new-personal-site/components/lib/form/Textarea.tsx

10 lines
255 B
TypeScript
Raw Normal View History

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