Textarea
Stablev1.0.0여러 줄 텍스트 입력 필드.
import { Textarea } from "@/components/ui/textarea";
<Textarea placeholder="Type your message here." />Installation
pnpm dlx shadcn@latest add https://groudit.com/r/textarea.jsonExamples
With Label
<Label htmlFor="msg">Message</Label>
<Textarea id="msg" placeholder="Type your message here." />Disabled
<Textarea placeholder="Disabled" disabled />Composition
TextareaAccessibility
이 컴포넌트는 WAI-ARIA textbox 패턴을 따릅니다.
Keyboard interactions
| Key | Description |
|---|---|
Tab | 다음 필드로 이동 (탭 문자 입력 X). |
Notes
- •반드시 <Label> 과 연결.