UNPKG

form-tool

Version:

Create quickly and robustly with form hooks

12 lines (11 loc) 277 B
import { FC } from 'react'; import { TTextArea } from './types'; /** * Input components * @version 0.0.1 * ```ts * @param {TTextArea} props properties Input * @return {ReactElement<TTextArea>} node Input * ``` */ export declare const TextArea: FC<TTextArea>;