# Trusted Knowledge Card

Approved knowledge collections with document counts, freshness, review state, and source management.

## Installation

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

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

## Preview

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


## Source

### ui/trusted-knowledge-card.tsx

```tsx
"use client";

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

export { TrustedKnowledgeCard } from "@/components/amro/components/agents";
export type { TrustedKnowledgeCardProps } from "@/components/amro/components/agents";
```



## Usage

Approved knowledge collections with document counts, freshness, review state, and source management.

### Package

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

<TrustedKnowledgeCard />
```

### shadcn copy

```tsx
import { TrustedKnowledgeCard } from "@/components/ui/trusted-knowledge-card";

<TrustedKnowledgeCard />
```

