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

13 lines
296 B
TypeScript
Raw Normal View History

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