mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-26 22:26:05 +00:00
76 lines
1.1 KiB
Plaintext
76 lines
1.1 KiB
Plaintext
---
|
|
title: Textarea
|
|
description: Displays a form textarea or a component that looks like a textarea.
|
|
component: true
|
|
---
|
|
|
|
<ComponentPreview name="textarea-demo" />
|
|
|
|
## Installation
|
|
|
|
<Tabs defaultValue="cli">
|
|
|
|
<TabsList>
|
|
<TabsTrigger value="cli">CLI</TabsTrigger>
|
|
<TabsTrigger value="manual">Manual</TabsTrigger>
|
|
</TabsList>
|
|
<TabsContent value="cli">
|
|
|
|
```bash
|
|
npx shadcn-ui@latest add textarea
|
|
```
|
|
|
|
</TabsContent>
|
|
|
|
<TabsContent value="manual">
|
|
|
|
<Steps>
|
|
|
|
<Step>Copy and paste the following code into your project.</Step>
|
|
|
|
<ComponentSource name="textarea" />
|
|
|
|
<Step>Update the import paths to match your project setup.</Step>
|
|
|
|
</Steps>
|
|
|
|
</TabsContent>
|
|
|
|
</Tabs>
|
|
|
|
## Usage
|
|
|
|
```tsx
|
|
import { Textarea } from "@/components/ui/textarea"
|
|
```
|
|
|
|
```tsx
|
|
<Textarea />
|
|
```
|
|
|
|
## Examples
|
|
|
|
### Default
|
|
|
|
<ComponentPreview name="textarea-demo" />
|
|
|
|
### Disabled
|
|
|
|
<ComponentPreview name="textarea-disabled" />
|
|
|
|
### With Label
|
|
|
|
<ComponentPreview name="textarea-with-label" className="[&_div.grid]:w-full" />
|
|
|
|
### With Text
|
|
|
|
<ComponentPreview name="textarea-with-text" />
|
|
|
|
### With Button
|
|
|
|
<ComponentPreview name="textarea-with-button" />
|
|
|
|
### Form
|
|
|
|
<ComponentPreview name="textarea-form" />
|