ds-smart-ui
Version:
Smart UI is a React component library that helps you build accessible and responsive web applications.
16 lines (14 loc) • 548 B
TypeScript
import { TextareaAutosizeProps } from 'react-textarea-autosize';
import { FormRoundedTypes, FormSizeTypes, FormColorTypes } from '../../../types/form-types';
declare const TextArea: import('react').ForwardRefExoticComponent<{
label?: string;
required?: boolean;
helperText?: string;
rounded?: FormRoundedTypes;
error?: boolean;
minRows?: number;
size?: FormSizeTypes;
color?: FormColorTypes;
id?: string;
} & TextareaAutosizeProps & import('react').RefAttributes<HTMLTextAreaElement>>;
export default TextArea;