# Cancellation Reason Dialog

A configurable, accessible cancellation reason dialog surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/cancellation-reason-dialog.tsx

```tsx
"use client";

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

export { CancellationReasonDialog } from "@/components/amro/components/meeting";
export type { CancellationReasonDialogProps } from "@/components/amro/components/meeting";
```



## Usage

A configurable, accessible cancellation reason dialog surface for AI product workflows.

### Package

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

<CancellationReasonDialog />
```

### shadcn copy

```tsx
import { CancellationReasonDialog } from "@/components/ui/cancellation-reason-dialog";

<CancellationReasonDialog />
```

