# Time Slot List

A configurable, accessible time slot list surface for AI product workflows.

## Installation

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

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

## Preview

```tsx
import { TimeSlotList } 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">
      <TimeSlotList />
    </div>
  );
}
```


## Source

### ui/time-slot-list.tsx

```tsx
"use client";

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

export { TimeSlotList } from "@/components/amro/components/meeting";
export type { TimeSlotListProps } from "@/components/amro/components/meeting";
```



## Usage

A configurable, accessible time slot list surface for AI product workflows.

### Package

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

<TimeSlotList />
```

### shadcn copy

```tsx
import { TimeSlotList } from "@/components/ui/time-slot-list";

<TimeSlotList />
```

