@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
14 lines (13 loc) • 320 B
TypeScript
import type { FC } from 'react';
import 'antd/lib/input/style/index';
import type { Rule } from 'antd/lib/form/';
interface IProps {
name: string;
label: string;
rules?: Rule[];
placeholder?: string;
rows?: number;
lableStyle?: any;
}
declare const TextArea: FC<IProps>;
export default TextArea;