import {TextareaHTMLAttributes} from 'react';
import {ColorsNameType} from '../../../../types/entities/colors-name';
export type TextareaColorsType = ColorsNameType;
export interface ITextarea extends TextareaHTMLAttributes {
label?: string;
id?: string;
helperText?: string;
containerClassName?: string;
color?: TextareaColorsType;
disabled?: boolean;
error?: boolean;
mandatory?: boolean;
}
export interface ITextareaHelperText {
error?: boolean;
}