10 lines
255 B
TypeScript
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} />;
|
|
}
|