Variable: Textarea

const Textarea: ForwardRefExoticComponent<Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, "color" | "size"> & Partial<{ color: InputColor; endContent: ReactNode; helperColor: HelperTextColor; helperText: ReactNode; label: ReactNode; max: number; size: InputSize; startContent: ReactNode; }> & RefAttributes<HTMLTextAreaElement>>

Renders a styled multiline text area with label, helper text, and character counting support.

Example

<Textarea label="Notes" placeholder="Write your notes here..." />