# Calendar Connection Card

A configurable, accessible calendar connection card surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/calendar-connection-card.tsx

```tsx
"use client";

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

export { CalendarConnectionCard } from "@/components/amro/components/meeting";
export type { CalendarConnectionCardProps } from "@/components/amro/components/meeting";
```



## Usage

A configurable, accessible calendar connection card surface for AI product workflows.

### Package

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

<CalendarConnectionCard />
```

### shadcn copy

```tsx
import { CalendarConnectionCard } from "@/components/ui/calendar-connection-card";

<CalendarConnectionCard />
```

