# Knowledge Boundary Badge

A configurable, accessible knowledge boundary badge surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/knowledge-boundary-badge.json
```

[Registry JSON](https://amro-ui.vercel.app/r/knowledge-boundary-badge.json)

## Preview

```tsx
import { KnowledgeBoundaryBadge } 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">
      <KnowledgeBoundaryBadge boundary="company" />
    </div>
  );
}
```


## Source

### ui/knowledge-boundary-badge.tsx

```tsx
"use client";

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

export { KnowledgeBoundaryBadge } from "@/components/amro/components/conversational";
export type { KnowledgeBoundaryBadgeProps } from "@/components/amro/components/conversational";
```



## Usage

A configurable, accessible knowledge boundary badge surface for AI product workflows.

### Package

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

<KnowledgeBoundaryBadge />
```

### shadcn copy

```tsx
import { KnowledgeBoundaryBadge } from "@/components/ui/knowledge-boundary-badge";

<KnowledgeBoundaryBadge />
```

