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} />;
|
|
|
|
}
|