# Weak Draft Warning

A configurable, accessible weak draft warning surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/weak-draft-warning.json
```

[Registry JSON](https://amro-ui.vercel.app/r/weak-draft-warning.json)

## Preview

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


## Source

### ui/weak-draft-warning.tsx

```tsx
"use client";

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

export { WeakDraftWarning } from "@/components/amro/components/sales";
export type { WeakDraftWarningProps } from "@/components/amro/components/sales";
```



## Usage

A configurable, accessible weak draft warning surface for AI product workflows.

### Package

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

<WeakDraftWarning />
```

### shadcn copy

```tsx
import { WeakDraftWarning } from "@/components/ui/weak-draft-warning";

<WeakDraftWarning />
```

