# Meeting Limit Card

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

## Installation

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

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

## Preview

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


## Source

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

```tsx
"use client";

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

export { MeetingLimitCard } from "@/components/amro/components/meeting";
export type { MeetingLimitCardProps } from "@/components/amro/components/meeting";
```



## Usage

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

### Package

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

<MeetingLimitCard />
```

### shadcn copy

```tsx
import { MeetingLimitCard } from "@/components/ui/meeting-limit-card";

<MeetingLimitCard />
```

