# Human In Loop Indicator

A persistent control-boundary notice explaining the paused action, reviewer, and approval stage.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/human-in-loop-indicator.json
```

[Registry JSON](https://amro-ui.vercel.app/r/human-in-loop-indicator.json)

## Preview

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


## Source

### ui/human-in-loop-indicator.tsx

```tsx
"use client";

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

export { HumanInLoopIndicator } from "@/components/amro/components/agents";
export type { HumanInLoopIndicatorProps } from "@/components/amro/components/agents";
```



## Usage

A persistent control-boundary notice explaining the paused action, reviewer, and approval stage.

### Package

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

<HumanInLoopIndicator />
```

### shadcn copy

```tsx
import { HumanInLoopIndicator } from "@/components/ui/human-in-loop-indicator";

<HumanInLoopIndicator />
```

