# Claim Verification Card

A configurable, accessible claim verification card surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/claim-verification-card.tsx

```tsx
"use client";

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

export { ClaimVerificationCard } from "@/components/amro/components/editorial";
export type { ClaimVerificationCardProps } from "@/components/amro/components/editorial";
```



## Usage

A configurable, accessible claim verification card surface for AI product workflows.

### Package

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

<ClaimVerificationCard />
```

### shadcn copy

```tsx
import { ClaimVerificationCard } from "@/components/ui/claim-verification-card";

<ClaimVerificationCard />
```

