# Amro Product Identity

A compact product identity lockup with product icon, description, and live availability state.

## Installation

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

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

## Preview

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


## Source

### ui/amro-product-identity.tsx

```tsx
"use client";

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

export { AmroProductIdentity } from "@/components/amro/components/shared";
export type { AmroProductIdentityProps } from "@/components/amro/components/shared";
```



## Usage

A compact product identity lockup with product icon, description, and live availability state.

### Package

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

<AmroProductIdentity />
```

### shadcn copy

```tsx
import { AmroProductIdentity } from "@/components/ui/amro-product-identity";

<AmroProductIdentity />
```

