# Keyword Brief Form

A configurable, accessible keyword brief form surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/keyword-brief-form.json
```

[Registry JSON](https://amro-ui.vercel.app/r/keyword-brief-form.json)

## Preview

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


## Source

### ui/keyword-brief-form.tsx

```tsx
"use client";

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

export { KeywordBriefForm } from "@/components/amro/components/editorial";
export type { KeywordBriefFormProps } from "@/components/amro/components/editorial";
```



## Usage

A configurable, accessible keyword brief form surface for AI product workflows.

### Package

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

<KeywordBriefForm />
```

### shadcn copy

```tsx
import { KeywordBriefForm } from "@/components/ui/keyword-brief-form";

<KeywordBriefForm />
```

