# Amro UILogo

A configurable, accessible amro uilogo surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/amro-ui-logo.tsx

```tsx
"use client";

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

export { AmroUILogo } from "@/components/amro/components/amro-ui-logo";
export type { AmroUILogoProps } from "@/components/amro/components/amro-ui-logo";
```



## Usage

A configurable, accessible amro uilogo surface for AI product workflows.

### Package

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

<AmroUILogo />
```

### shadcn copy

```tsx
import { AmroUILogo } from "@/components/ui/amro-ui-logo";

<AmroUILogo />
```

