UNPKG

@aveonline/ui-react

Version:

Home base for Aveonline design system - ecosystem react

12 lines (11 loc) 351 B
import { TextareaHTMLAttributes } from 'react'; export declare type ITextArea = { error?: string; isError?: boolean; helpText?: string; showErrorText?: boolean; resizable?: boolean; _t?: (text: string) => string; useT?: boolean; onChangeValue?: (value: string) => void; } & TextareaHTMLAttributes<HTMLTextAreaElement>;