new-personal-site/components/lib/form/Textarea.tsx
Benjamin Toby 5587024789 Updates
2025-01-05 07:25:38 +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} />;
}