# Campaign Crop Set

A configurable, accessible campaign crop set surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/campaign-crop-set.json
```

[Registry JSON](https://amro-ui.vercel.app/r/campaign-crop-set.json)

## Preview

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


## Source

### ui/campaign-crop-set.tsx

```tsx
"use client";

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

export { CampaignCropSet } from "@/components/amro/components/generation";
export type { CampaignCropSetProps } from "@/components/amro/components/generation";
```



## Usage

A configurable, accessible campaign crop set surface for AI product workflows.

### Package

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

<CampaignCropSet />
```

### shadcn copy

```tsx
import { CampaignCropSet } from "@/components/ui/campaign-crop-set";

<CampaignCropSet />
```

