# Fit Reason Popover

A configurable, accessible fit reason popover surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/fit-reason-popover.json
```

[Registry JSON](https://amro-ui.vercel.app/r/fit-reason-popover.json)

## Preview

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


## Source

### ui/fit-reason-popover.tsx

```tsx
"use client";

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

export { FitReasonPopover } from "@/components/amro/components/sales";
export type { FitReasonPopoverProps } from "@/components/amro/components/sales";
```



## Usage

A configurable, accessible fit reason popover surface for AI product workflows.

### Package

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

<FitReasonPopover />
```

### shadcn copy

```tsx
import { FitReasonPopover } from "@/components/ui/fit-reason-popover";

<FitReasonPopover />
```

