new-personal-site/components/lib/form/Textarea.tsx
2024-12-09 16:36:17 +01:00

10 lines
255 B
TypeScript

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