mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-22 20:25:44 +00:00
* feat: add next forms docs * feat * docs: rhf and tsf * docs: forms * feat: update react-hook-form docs * feat: update docs for both lib * docs: update tanstack docs * docs: update * fix * fix * fix * add forms link in sidebar
82 lines
1.3 KiB
Plaintext
82 lines
1.3 KiB
Plaintext
---
|
|
title: Textarea
|
|
description: Displays a form textarea or a component that looks like a textarea.
|
|
component: true
|
|
---
|
|
|
|
<ComponentPreview name="textarea-demo" description="A textarea" />
|
|
|
|
## Installation
|
|
|
|
<CodeTabs>
|
|
|
|
<TabsList>
|
|
<TabsTrigger value="cli">CLI</TabsTrigger>
|
|
<TabsTrigger value="manual">Manual</TabsTrigger>
|
|
</TabsList>
|
|
<TabsContent value="cli">
|
|
|
|
```bash
|
|
npx shadcn@latest add textarea
|
|
```
|
|
|
|
</TabsContent>
|
|
|
|
<TabsContent value="manual">
|
|
|
|
<Steps>
|
|
|
|
<Step>Copy and paste the following code into your project.</Step>
|
|
|
|
<ComponentSource name="textarea" title="components/ui/textarea.tsx" />
|
|
|
|
<Step>Update the import paths to match your project setup.</Step>
|
|
|
|
</Steps>
|
|
|
|
</TabsContent>
|
|
|
|
</CodeTabs>
|
|
|
|
## Usage
|
|
|
|
```tsx
|
|
import { Textarea } from "@/components/ui/textarea"
|
|
```
|
|
|
|
```tsx
|
|
<Textarea />
|
|
```
|
|
|
|
## Examples
|
|
|
|
### Default
|
|
|
|
<ComponentPreview name="textarea-demo" description="A textarea" />
|
|
|
|
### Disabled
|
|
|
|
<ComponentPreview name="textarea-disabled" description="A disabled textarea" />
|
|
|
|
### With Label
|
|
|
|
<ComponentPreview
|
|
name="textarea-with-label"
|
|
className="[&_div.grid]:w-full"
|
|
description="A textarea with a label"
|
|
/>
|
|
|
|
### With Text
|
|
|
|
<ComponentPreview
|
|
name="textarea-with-text"
|
|
description="A textarea with text"
|
|
/>
|
|
|
|
### With Button
|
|
|
|
<ComponentPreview
|
|
name="textarea-with-button"
|
|
description="A textarea with a button"
|
|
/>
|