# Chat Action Receipt

A configurable, accessible chat action receipt surface for AI product workflows.

## Installation

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

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

## Preview

```tsx
import { ChatActionReceipt } 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">
      <ChatActionReceipt action="Meeting booked" detail="Invitation sent" />
    </div>
  );
}
```


## Source

### ui/chat-action-receipt.tsx

```tsx
"use client";

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

export { ChatActionReceipt } from "@/components/amro/components/conversational";
export type { ChatActionReceiptProps } from "@/components/amro/components/conversational";
```



## Usage

A configurable, accessible chat action receipt surface for AI product workflows.

### Package

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

<ChatActionReceipt />
```

### shadcn copy

```tsx
import { ChatActionReceipt } from "@/components/ui/chat-action-receipt";

<ChatActionReceipt />
```

