# Autonomy Level Control

A configurable, accessible autonomy level control surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/autonomy-level-control.json
```

[Registry JSON](https://amro-ui.vercel.app/r/autonomy-level-control.json)

## Preview

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


## Source

### ui/autonomy-level-control.tsx

```tsx
"use client";

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

export { AutonomyLevelControl } from "@/components/amro/components/sales";
export type { AutonomyLevelControlProps } from "@/components/amro/components/sales";
```



## Usage

A configurable, accessible autonomy level control surface for AI product workflows.

### Package

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

<AutonomyLevelControl />
```

### shadcn copy

```tsx
import { AutonomyLevelControl } from "@/components/ui/autonomy-level-control";

<AutonomyLevelControl />
```

