# Conversation Timeline

A configurable, accessible conversation timeline surface for AI product workflows.

## Installation

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

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

## Preview

```tsx
import { ConversationTimeline } 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">
      <ConversationTimeline items={[{ id: "one", type: "action", title: "CRM updated", timestamp: "Now" }]} />
    </div>
  );
}
```


## Source

### ui/conversation-timeline.tsx

```tsx
"use client";

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

export { ConversationTimeline } from "@/components/amro/components/conversational";
export type { ConversationTimelineProps } from "@/components/amro/components/conversational";
```



## Usage

A configurable, accessible conversation timeline surface for AI product workflows.

### Package

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

<ConversationTimeline />
```

### shadcn copy

```tsx
import { ConversationTimeline } from "@/components/ui/conversation-timeline";

<ConversationTimeline />
```

