# Event Type Card

A configurable, accessible event type card surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/event-type-card.tsx

```tsx
"use client";

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

export { EventTypeCard } from "@/components/amro/components/meeting";
export type { EventTypeCardProps } from "@/components/amro/components/meeting";
```



## Usage

A configurable, accessible event type card surface for AI product workflows.

### Package

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

<EventTypeCard />
```

### shadcn copy

```tsx
import { EventTypeCard } from "@/components/ui/event-type-card";

<EventTypeCard />
```

