# Meeting Reason Card

A configurable, accessible meeting reason card surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/meeting-reason-card.tsx

```tsx
"use client";

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

export { MeetingReasonCard } from "@/components/amro/components/meeting";
export type { MeetingReasonCardProps } from "@/components/amro/components/meeting";
```



## Usage

A configurable, accessible meeting reason card surface for AI product workflows.

### Package

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

<MeetingReasonCard />
```

### shadcn copy

```tsx
import { MeetingReasonCard } from "@/components/ui/meeting-reason-card";

<MeetingReasonCard />
```

