# Source Context Chip

A configurable, accessible source context chip surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/source-context-chip.tsx

```tsx
"use client";

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

export { SourceContextChip } from "@/components/amro/components/meeting";
export type { SourceContextChipProps } from "@/components/amro/components/meeting";
```



## Usage

A configurable, accessible source context chip surface for AI product workflows.

### Package

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

<SourceContextChip />
```

### shadcn copy

```tsx
import { SourceContextChip } from "@/components/ui/source-context-chip";

<SourceContextChip />
```

