# Human Approval Pipeline

A reusable autonomous-workflow boundary that stops consequential actions until a person reviews and approves them.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/human-approval-pipeline.json
```

[Registry JSON](https://amro-ui.vercel.app/r/human-approval-pipeline.json)

## Preview

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


## Source

### ui/human-approval-pipeline.tsx

```tsx
"use client";

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

export { HumanApprovalPipeline } from "@/components/amro/components/signature-flows";
export type { HumanApprovalPipelineProps } from "@/components/amro/components/signature-flows";
```



## Usage

A reusable autonomous-workflow boundary that stops consequential actions until a person reviews and approves them.

### Package

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

<HumanApprovalPipeline />
```

### shadcn copy

```tsx
import { HumanApprovalPipeline } from "@/components/ui/human-approval-pipeline";

<HumanApprovalPipeline />
```

