Files
shadcn-ui/apps/www/content/docs/components/input.mdx

76 lines
1.3 KiB
Plaintext

---
title: Input
description: Displays a form input field or a component that looks like an input field.
component: true
---
<ComponentPreview name="input-demo" className="[&_input]:max-w-xs" />
## 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 input
```
</TabsContent>
<TabsContent value="manual">
<Steps>
<Step>Copy and paste the following code into your project.</Step>
<ComponentSource name="input" />
<Step>Update the import paths to match your project setup.</Step>
</Steps>
</TabsContent>
</Tabs>
## Usage
```tsx
import { Input } from "@/components/ui/input"
```
```tsx
<Input />
```
## Examples
### Default
<ComponentPreview name="input-demo" className="[&_input]:max-w-xs" />
### File
<ComponentPreview name="input-file" className="[&_input]:max-w-xs" />
### Disabled
<ComponentPreview name="input-disabled" className="[&_input]:max-w-xs" />
### With Label
<ComponentPreview name="input-with-label" className="[&_input]:max-w-xs" />
### With Button
<ComponentPreview name="input-with-button" className="[&_input]:max-w-xs" />
### Form
<ComponentPreview name="input-form" />