# Meet Creation Progress

A configurable, accessible meet creation progress surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/meet-creation-progress.tsx

```tsx
"use client";

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

export { MeetCreationProgress } from "@/components/amro/components/signature-flows";
export type { MeetCreationProgressProps } from "@/components/amro/components/signature-flows";
```



## Usage

A configurable, accessible meet creation progress surface for AI product workflows.

### Package

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

<MeetCreationProgress />
```

### shadcn copy

```tsx
import { MeetCreationProgress } from "@/components/ui/meet-creation-progress";

<MeetCreationProgress />
```

