Files
shadcn-ui/apps/v4/content/docs/components/base/input.mdx
shadcn 47c47eaed2 feat: add docs for base-ui components (#9304)
* feat: add base and radix docs

* feat: transform code for display

* fix

* fix

* fix

* fix

* fix

* chore: remove claude files

* fix

* fix

* fix

* chore: run format:write

* fix

* feat: add more examples

* fix

* feat: add aspect-ratio

* feat: add avatar

* feat: add badge

* feat: add breadcrumb

* fix

* feat: add button

* fix

* fix

* fix

* feat: add calendar and card

* feat: add carousel

* fix: chart

* feat: add checkbox

* feat: add collapsible

* feat: add combobox

* feat: add command

* feat: add context menu

* feat: add data-table dialog and drawer

* feat: dropdown-menu

* feat: add date-picker

* feat: add empty

* feat: add field and hover-card

* fix: input

* feat: add input

* feat: add input-group

* feat: add input-otp

* feat: add item

* feat: add kbd and label

* feat: add menubar

* feat: add native-select

* feat: add more components

* feat: more components

* feat: more components

* feat: add skeleton, slider and sonner

* feat: add spinner and switch

* feat: add more components

* fix: tabs

* fix: tabs

* feat: add docs for sidebar

* fix

* fix

* fi

* docs: update

* fix: create page

* fix

* fix

* chore: add changelog

* fix
2026-01-20 19:31:38 +04:00

191 lines
3.5 KiB
Plaintext

---
title: Input
description: A text input component for forms and user data entry with built-in styling and accessibility features.
base: base
component: true
---
<ComponentPreview
styleName="base-nova"
name="input-demo"
previewClassName="*:max-w-xs"
/>
## Installation
<CodeTabs>
<TabsList>
<TabsTrigger value="cli">Command</TabsTrigger>
<TabsTrigger value="manual">Manual</TabsTrigger>
</TabsList>
<TabsContent value="cli">
```bash
npx shadcn@latest add input
```
</TabsContent>
<TabsContent value="manual">
<Steps className="mb-0 pt-2">
<Step>Copy and paste the following code into your project.</Step>
<ComponentSource
name="input"
title="components/ui/input.tsx"
styleName="base-nova"
/>
<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
### Basic
<ComponentPreview
styleName="base-nova"
name="input-basic"
previewClassName="*:max-w-xs"
/>
### Field
Use `Field`, `FieldLabel`, and `FieldDescription` to create an input with a
label and description.
<ComponentPreview
styleName="base-nova"
name="input-field"
previewClassName="*:max-w-xs"
/>
### Field Group
Use `FieldGroup` to show multiple `Field` blocks and to build forms.
<ComponentPreview
styleName="base-nova"
name="input-fieldgroup"
previewClassName="*:max-w-xs"
/>
### Disabled
Use the `disabled` prop to disable the input. To style the disabled state, add the `data-disabled` attribute to the `Field` component.
<ComponentPreview
styleName="base-nova"
name="input-disabled"
previewClassName="*:max-w-xs"
/>
### Invalid
Use the `aria-invalid` prop to mark the input as invalid. To style the invalid state, add the `data-invalid` attribute to the `Field` component.
<ComponentPreview
styleName="base-nova"
name="input-invalid"
previewClassName="*:max-w-xs"
/>
### File
Use the `type="file"` prop to create a file input.
<ComponentPreview
styleName="base-nova"
name="input-file"
previewClassName="*:max-w-xs"
/>
### Inline
Use `Field` with `orientation="horizontal"` to create an inline input.
Pair with `Button` to create a search input with a button.
<ComponentPreview
styleName="base-nova"
name="input-inline"
previewClassName="*:max-w-xs"
/>
### Grid
Use a grid layout to place multiple inputs side by side.
<ComponentPreview
styleName="base-nova"
name="input-grid"
previewClassName="p-6"
/>
### Required
Use the `required` attribute to indicate required inputs.
<ComponentPreview
styleName="base-nova"
name="input-required"
previewClassName="*:max-w-xs"
/>
### Badge
Use `Badge` in the label to highlight a recommended field.
<ComponentPreview
styleName="base-nova"
name="input-badge"
previewClassName="*:max-w-xs"
/>
### Input Group
To add icons, text, or buttons inside an input, use the `InputGroup` component. See the [Input Group](/docs/components/input-group) component for more examples.
<ComponentPreview
styleName="base-nova"
name="input-input-group"
previewClassName="*:max-w-xs"
/>
### Button Group
To add buttons to an input, use the `ButtonGroup` component. See the [Button Group](/docs/components/button-group) component for more examples.
<ComponentPreview
styleName="base-nova"
name="input-button-group"
previewClassName="*:max-w-xs"
/>
### Form
A full form example with multiple inputs, a select, and a button.
<ComponentPreview
styleName="base-nova"
name="input-form"
previewClassName="h-[32rem]"
/>