# Alt Text Generator

A configurable, accessible alt text generator surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/alt-text-generator.json
```

[Registry JSON](https://amro-ui.vercel.app/r/alt-text-generator.json)

## Preview

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


## Source

### ui/alt-text-generator.tsx

```tsx
"use client";

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

export { AltTextGenerator } from "@/components/amro/components/generation";
export type { AltTextGeneratorProps } from "@/components/amro/components/generation";
```



## Usage

A configurable, accessible alt text generator surface for AI product workflows.

### Package

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

<AltTextGenerator />
```

### shadcn copy

```tsx
import { AltTextGenerator } from "@/components/ui/alt-text-generator";

<AltTextGenerator />
```

