quick-ui-design
Version:
A Quick UI library for user interface design with React fast and easy.
10 lines (9 loc) • 310 B
TypeScript
import { TextAreaProps } from 'antd/es/input';
import { FC } from 'react';
import { INPUT_TEXT_AREA } from '../../../Types';
export interface IInputTextArea {
ctype: typeof INPUT_TEXT_AREA;
props: TextAreaProps;
}
declare const InputTextArea: FC<IInputTextArea>;
export default InputTextArea;