# Human Approval Notice

A reusable control-boundary notice explaining why work paused, who reviews it, and how to continue.

## Installation

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

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

## Preview

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


## Source

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

```tsx
"use client";

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

export { HumanApprovalNotice } from "@/components/amro/components/shared";
export type { HumanApprovalNoticeProps } from "@/components/amro/components/shared";
```



## Usage

A reusable control-boundary notice explaining why work paused, who reviews it, and how to continue.

### Package

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

<HumanApprovalNotice />
```

### shadcn copy

```tsx
import { HumanApprovalNotice } from "@/components/ui/human-approval-notice";

<HumanApprovalNotice />
```

