# Select

A configurable, accessible select surface for AI product workflows.

## Installation

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

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

## Preview

```tsx
import { Select } 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">
      <Select aria-label="Product"><option>AmroAgents</option><option>AmroGen</option><option>AmroPilot</option></Select>
    </div>
  );
}
```


## Source

### ui/select.tsx

```tsx
"use client";

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

export { Select } from "@/components/amro/components/input";
export type { SelectProps } from "@/components/amro/components/input";
```



## Usage

A configurable, accessible select surface for AI product workflows.

### Package

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

<Select />
```

### shadcn copy

```tsx
import { Select } from "@/components/ui/select";

<Select />
```

