# Brand Voice Meter

A configurable, accessible brand voice meter surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/brand-voice-meter.json
```

[Registry JSON](https://amro-ui.vercel.app/r/brand-voice-meter.json)

## Preview

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


## Source

### ui/brand-voice-meter.tsx

```tsx
"use client";

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

export { BrandVoiceMeter } from "@/components/amro/components/editorial";
export type { BrandVoiceMeterProps } from "@/components/amro/components/editorial";
```



## Usage

A configurable, accessible brand voice meter surface for AI product workflows.

### Package

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

<BrandVoiceMeter />
```

### shadcn copy

```tsx
import { BrandVoiceMeter } from "@/components/ui/brand-voice-meter";

<BrandVoiceMeter />
```

