---
title: Input
description: A text input field for capturing user data.
links:
  doc: https://base-ui.com/react/components/input
  api: https://base-ui.com/react/components/input#api-reference
---

```tsx
'use client';

import { Input } from '@/components/ui/input';

export function InputDefault() {
  return <Input type='text' placeholder='Enter text...' className='w-64' />;
}
```

## Installation

```bash
npx shadcn@latest add @fab-ui/input
```

**Install the following dependencies:**

```bash
npm install @base-ui/react
```

**Copy and paste the following code into your project.**

```tsx
import * as React from 'react';

import { Input as InputPrimitive } from '@base-ui/react/input';

import { cn } from '@/lib/utils';

function Input({ className, type, ...props }: React.ComponentProps<'input'>) {
  return (
    <InputPrimitive
      type={type}
      data-slot='input'
      className={cn(
        'h-8 w-full min-w-0 rounded-4xl border border-input bg-transparent px-2.5 py-1 text-base transition-colors outline-none file:inline-flex file:h-6 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:cursor-not-allowed disabled:bg-input/50 disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-[3px] aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:disabled:bg-input/80 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40',
        className
      )}
      {...props}
    />
  );
}

export { Input };
```

**Update the import paths to match your project setup.**

## Usage

```tsx
import { Input } from "@/components/ui/input"
```

```tsx
<Input type='email' placeholder='Enter your email' />
```

## Examples

### Disabled

```tsx
'use client';

import { Input } from '@/components/ui/input';

export function InputDisabled() {
  return (
    <Input type='text' placeholder='Disabled input' disabled className='w-64' />
  );
}
```
