# Agent Typing Stack

A configurable, accessible agent typing stack surface for AI product workflows.

## Installation

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

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

## Preview

```tsx
import { AgentTypingStack } 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">
      <AgentTypingStack agents={[{ id: "sales", name: "Sales" }, { id: "support", name: "Support" }]} />
    </div>
  );
}
```


## Source

### ui/agent-typing-stack.tsx

```tsx
"use client";

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

export { AgentTypingStack } from "@/components/amro/components/conversational";
export type { AgentTypingStackProps } from "@/components/amro/components/conversational";
```



## Usage

A configurable, accessible agent typing stack surface for AI product workflows.

### Package

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

<AgentTypingStack />
```

### shadcn copy

```tsx
import { AgentTypingStack } from "@/components/ui/agent-typing-stack";

<AgentTypingStack />
```

