Textarea
A multi-line text input component with different states, validations, and icon support for creating accessible, user-friendly text areas.
Overview
The Textarea component provides a versatile multi-line text input system that supports various states, validations, and icon placements. It's designed to collect longer user input with appropriate visual feedback and enhanced usability through icons, while maintaining accessibility and consistent design patterns.
Usage
Examples
Default Textarea
The default textarea style with neutral colors. Can include optional icons for better visual context.
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
Textarea pre-populated with an initial value that users can modify or build upon.
Character Count
Example of a textarea with character count functionality to help users stay within length limits.
With Icons
Example of a textarea with both leading and trailing icons for enhanced functionality.
Features
- Multiple States: Different visual styles (default, success, warning, error, disabled) for semantic meaning
- Icon Support: Left and right icon positioning for enhanced visual context
- Character Count: Built-in character counting functionality
- Resizable: Users can resize textareas to fit their content needs
- Accessibility: Full accessibility support with proper ARIA attributes
- Responsive Design: Adapts to different screen sizes
- Dark Mode Support: Consistent appearance in light and dark themes
- Customizable: Extensive styling options through className props
Props
The Textarea component accepts all standard HTML textarea attributes plus the following:
Prop | Type | Default | Description |
---|---|---|---|
variant | "default" | "success" | "warning" | "error" | "default" | The variant style to use for the textarea |
leftIcon | React.ReactNode | - | Icon to display on the left side of the textarea |
rightIcon | React.ReactNode | - | Icon to display on the right side of the textarea |
wrapperClassName | string | - | Additional CSS classes for the textarea wrapper |
placeholder | string | - | Placeholder text displayed when textarea is empty |
value | string | - | The current value of the textarea |
defaultValue | string | - | Default value when uncontrolled |
rows | number | - | Number of visible text lines |
cols | number | - | Number of visible text columns |
disabled | boolean | - | Whether the textarea is disabled |
readOnly | boolean | - | Whether the textarea is read-only |
name | string | - | Name of the textarea for form submission |
onChange | (event: React.ChangeEvent<HTMLTextAreaElement>) => void | - | Callback triggered when textarea value changes |
onFocus | (event: React.FocusEvent<HTMLTextAreaElement>) => void | - | Callback triggered when textarea gains focus |
onBlur | (event: React.FocusEvent<HTMLTextAreaElement>) => void | - | Callback triggered when textarea loses focus |
className | string | - | Additional CSS classes to apply |
Variants
Default
- Standard textarea with neutral colors
- Use for most multi-line text inputs
- Balanced visual weight and accessibility
Success
- Green styling for positive validation states
- Use for successfully validated inputs
- Encourages positive user feedback
Warning
- Yellow/orange styling for cautionary states
- Use for inputs that need attention but aren't errors
- Indicates potential issues
Error
- Red styling for validation errors
- Use for failed validation or critical issues
- Clearly indicates problems that need resolution
Disabled
- Grayed out styling for non-interactive state
- Use when user interaction should be prevented
- Clear visual indication of unavailability
Structure
The Textarea component is composed of:
- Textarea Container - Main wrapper with styling and positioning
- Left Icon - Optional icon on the left side
- Textarea Element - The actual textarea field
- Right Icon - Optional icon on the right side
- Character Count - Optional character counting display
Styling
The component includes default styling with:
- Consistent padding and border radius
- Color-coded variants for semantic meaning
- Smooth transitions for state changes
- Resizable behavior for user flexibility
- Dark mode support with appropriate color schemes
- Focus states for accessibility
- Customizable through className props
Custom Styling
You can customize the appearance using the className prop:
Accessibility
The Textarea component is built with accessibility in mind:
- Semantic HTML: Uses proper textarea elements with appropriate attributes
- ARIA Attributes: Proper ARIA labels and descriptions for screen readers
- Keyboard Navigation: Full keyboard support including Tab navigation
- Focus Management: Clear focus indicators and logical tab order
- Screen Reader Support: Announces textarea states and validation appropriately
- High Contrast: Maintains proper contrast ratios across all variants
- Resize Support: Proper handling of textarea resize functionality