decentraland-ui
Version:
Decentraland's UI components and styles
13 lines (12 loc) • 450 B
TypeScript
import { TextAreaProps } from 'semantic-ui-react/dist/commonjs/addons/TextArea/TextArea';
import { InfoTooltipProps } from '../InfoTooltip';
import './TextAreaField.css';
export declare type TextAreaFieldProps = TextAreaProps & {
label?: string;
maxLength?: number;
error?: string;
warning?: string;
info?: string;
tooltip?: InfoTooltipProps;
};
export declare const TextAreaField: (props: TextAreaFieldProps) => JSX.Element;