tailwind-ui-library/components/form/Textarea.tsx
2026-03-04 17:35:14 +01:00

13 lines
296 B
TypeScript

import Input, { InputProps } from "./Input";
/**
* # Textarea Component
* @className twui-textarea
*/
export default function Textarea<KeyType extends string>({
componentRef,
...props
}: InputProps<KeyType>) {
return <Input istextarea {...props} componentRef={componentRef} />;
}