Textarea
A multi-line text input component with different states, validations, and icon support.
Textarea
A versatile multi-line text input component that supports various states, validations, and icon placements. Use it to collect longer user input with appropriate visual feedback and enhanced usability through icons.
Default
The default textarea style with neutral colors. Can include optional icons for better visual context.
States
Textarea components can reflect different states through visual styling:
Success State
Use the success state to indicate valid input or successful validation. The checkmark icon provides immediate visual feedback.
Warning State
The warning state can be used to show potential issues that don't prevent form submission. The alert icon draws attention to the warning state.
Error State
Use the error state to indicate invalid input that needs correction. The alert icon emphasizes the error state.
Disabled State
Use the disabled state when user interaction should be prevented, such as during form submission or when the input depends on other conditions.
With Default Value State
Textarea pre-populated with an initial value that users can modify or build upon.
Interactive Elements
Character Count
Example of a textarea with character count functionality to help users stay within length limits.
Textarea with Icons
Example of a textarea with both leading and trailing icons for enhanced functionality.
Props
The Textarea component accepts all standard HTML textarea attributes plus the following:
Prop | Type | Default |
---|---|---|
variant | "default" | "success" | "warning" | "error" | - |
leftIcon | ReactNode | - |
rightIcon | ReactNode | - |
wrapperClassName | string | - |
Icon Guidelines
When using icons with the Textarea component:
- Icons should be sized appropriately (recommended: 16x16px using
h-4 w-4
classes) - Icons inherit colors based on the textarea's variant state
- Interactive icons should be wrapped in buttons
- Avoid using too many icons which might clutter the interface
- Left icons are typically used for input type indication (notes, description, etc.)
- Right icons are commonly used for interactive elements (expand/collapse, character count toggle, etc.)