# Research Progress Rail

A configurable, accessible research progress rail surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/research-progress-rail.tsx

```tsx
"use client";

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

export { ResearchProgressRail } from "@/components/amro/components/signature-flows";
export type { ResearchProgressRailProps } from "@/components/amro/components/signature-flows";
```



## Usage

A configurable, accessible research progress rail surface for AI product workflows.

### Package

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

<ResearchProgressRail />
```

### shadcn copy

```tsx
import { ResearchProgressRail } from "@/components/ui/research-progress-rail";

<ResearchProgressRail />
```

