# Confidence Selector

A configurable, accessible confidence selector surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/confidence-selector.json
```

[Registry JSON](https://amro-ui.vercel.app/r/confidence-selector.json)

## Preview

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


## Source

### ui/confidence-selector.tsx

```tsx
"use client";

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

export { ConfidenceSelector } from "@/components/amro/components/learning";
export type { ConfidenceSelectorProps } from "@/components/amro/components/learning";
```



## Usage

A configurable, accessible confidence selector surface for AI product workflows.

### Package

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

<ConfidenceSelector />
```

### shadcn copy

```tsx
import { ConfidenceSelector } from "@/components/ui/confidence-selector";

<ConfidenceSelector />
```

