Multi-line text input areas
Interactive preview of the Textarea component with different variants.
Install the package via npm:
npm install apex-design-systemimport { Textarea } from 'apex-design-system';<Textarea placeholder="Enter your message..." />import { Label, Textarea } from 'apex-design-system';
<div className="space-y-2">
<Label htmlFor="message">Message</Label>
<Textarea id="message" placeholder="Your message here..." rows={4} />
</div>This component follows WAI-ARIA best practices and is WCAG 2.1 AA compliant. It includes proper keyboard navigation, focus management, and screen reader support.