# Reference Image Tray

A configurable, accessible reference image tray surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/reference-image-tray.json
```

[Registry JSON](https://amro-ui.vercel.app/r/reference-image-tray.json)

## Preview

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


## Source

### ui/reference-image-tray.tsx

```tsx
"use client";

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

export { ReferenceImageTray } from "@/components/amro/components/generation";
export type { ReferenceImageTrayProps } from "@/components/amro/components/generation";
```



## Usage

A configurable, accessible reference image tray surface for AI product workflows.

### Package

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

<ReferenceImageTray />
```

### shadcn copy

```tsx
import { ReferenceImageTray } from "@/components/ui/reference-image-tray";

<ReferenceImageTray />
```

