ds-smart-ui
Version:
Smart UI v1.0.5 — A production-ready React component library by PT Praisindo Teknologi. Covers inputs, navigation, data display, feedback, and layout with a unified design system, semantic Typography tokens, and full Storybook documentation.
20 lines (19 loc) • 707 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;
showRequired?: boolean;
helperText?: string;
roundedProp?: FormRoundedTypes;
rounded?: FormRoundedTypes;
error?: boolean;
minRows?: number;
sizeProp?: FormSizeTypes;
size?: FormSizeTypes;
colorProp?: FormColorTypes;
color?: FormColorTypes;
id?: string;
showCharacterCount?: boolean;
} & TextareaAutosizeProps & import('react').RefAttributes<HTMLTextAreaElement>>;
export default TextArea;