All components
Textarea
Multi-line text entry with the same outline, subtle, and flushed variants as Input.
Variants
outline
subtle
flushed
Sizes
sm
md
lg
Install
zsh — textarea
1bunx stylexblocks add textareaUsage — Ark UI
textarea.tsx
12345678910111213import { Textarea } from "#components/ui/ark-ui/textarea.tsx";
export function Example() { return ( <> {/* variant + size props resolve through the StyleX recipe */} <Textarea variant="outline" size="md" rows={3} placeholder="Your message" />
{/* native props pass straight through */} <Textarea variant="subtle" required aria-label="Notes" /> </> );}