Files
shadcn-ui/apps/v4/content/docs/components/input.mdx
shadcn c67e630521 feat: add docs and examples for react-hook-form and tanstack form (#8412)
* 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
2025-10-10 21:29:30 +04:00

102 lines
1.6 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"
description="A form input component."
/>
## Installation
<CodeTabs>
<TabsList>
<TabsTrigger value="cli">CLI</TabsTrigger>
<TabsTrigger value="manual">Manual</TabsTrigger>
</TabsList>
<TabsContent value="cli">
```bash
npx shadcn@latest add input
```
</TabsContent>
<TabsContent value="manual">
<Steps>
<Step>Copy and paste the following code into your project.</Step>
<ComponentSource name="input" title="components/ui/input.tsx" />
<Step>Update the import paths to match your project setup.</Step>
</Steps>
</TabsContent>
</CodeTabs>
## Usage
```tsx
import { Input } from "@/components/ui/input"
```
```tsx
<Input />
```
## Examples
### Default
<ComponentPreview
name="input-demo"
className="[&_input]:max-w-xs"
description="A form input component."
/>
### File
<ComponentPreview
name="input-file"
className="[&_input]:max-w-xs"
description="A file input component."
/>
### Disabled
<ComponentPreview
name="input-disabled"
className="[&_input]:max-w-xs"
description="A disabled input component."
/>
### With Label
<ComponentPreview
name="input-with-label"
className="[&_input]:max-w-xs"
description="An input component with a label."
/>
### With Button
<ComponentPreview
name="input-with-button"
className="[&_input]:max-w-xs"
description="An input component with a button."
/>
## Changelog
### 2025-09-18 Remove `flex` class
Edit `input.tsx` and remove the `flex` class from the input component. This is no longer needed.