# Generation Progress Story

A configurable, accessible generation progress story surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/generation-progress-story.tsx

```tsx
"use client";

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

export { GenerationProgressStory } from "@/components/amro/components/signature-flows";
export type { GenerationProgressStoryProps } from "@/components/amro/components/signature-flows";
```



## Usage

A configurable, accessible generation progress story surface for AI product workflows.

### Package

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

<GenerationProgressStory />
```

### shadcn copy

```tsx
import { GenerationProgressStory } from "@/components/ui/generation-progress-story";

<GenerationProgressStory />
```

