# Input

A configurable, accessible input surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/input.json
```

[Registry JSON](https://amro-ui.vercel.app/r/input.json)

## Preview

```tsx
import { Input } from "@amro-ui/react";

export function Preview() {
  return (
    <div className="grid min-h-72 w-full place-items-center rounded-xl border bg-background p-6 sm:p-10">
      <Input />
    </div>
  );
}
```


## Source

### ui/input.tsx

```tsx
"use client";

import "@/components/amro/amro-ui.css";

export { Input } from "@/components/amro/components/input";
export type { InputProps } from "@/components/amro/components/input";
```



## Usage

A configurable, accessible input surface for AI product workflows.

### Package

```tsx
import { Input } from "@amro-ui/react";

<Input />
```

### shadcn copy

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

<Input />
```

