# Workflow Step Rail

A configurable, accessible workflow step rail surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/workflow-step-rail.tsx

```tsx
"use client";

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

export { WorkflowStepRail } from "@/components/amro/components/signature-flows";
export type { WorkflowStepRailProps } from "@/components/amro/components/signature-flows";
```



## Usage

A configurable, accessible workflow step rail surface for AI product workflows.

### Package

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

<WorkflowStepRail />
```

### shadcn copy

```tsx
import { WorkflowStepRail } from "@/components/ui/workflow-step-rail";

<WorkflowStepRail />
```

