13 lines
296 B
TypeScript
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} />;
|
|
}
|