@szum-tech/design-system
Version:
Szum-Tech design system with tailwindcss support
10 lines (7 loc) • 322 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
import * as React from 'react';
type TextareaProps = React.ComponentProps<"textarea"> & {
invalid?: boolean;
};
declare function Textarea({ className, invalid, ...props }: TextareaProps): react_jsx_runtime.JSX.Element;
export { Textarea, type TextareaProps };