UNPKG

@szum-tech/design-system

Version:

Szum-Tech design system with tailwindcss support

9 lines (6 loc) 254 B
import * as React from 'react'; type TextareaProps = React.ComponentProps<"textarea"> & { invalid?: boolean; }; declare function Textarea({ className, invalid, ...props }: TextareaProps): React.JSX.Element; export { Textarea, type TextareaProps };