# Live Pulse Badge

An explicit live, processing, or paused status badge with reduced-motion support.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/live-pulse-badge.json
```

[Registry JSON](https://amro-ui.vercel.app/r/live-pulse-badge.json)

## Preview

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


## Source

### ui/live-pulse-badge.tsx

```tsx
"use client";

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

export { LivePulseBadge } from "@/components/amro/components/shared";
export type { LivePulseBadgeProps } from "@/components/amro/components/shared";
```



## Usage

An explicit live, processing, or paused status badge with reduced-motion support.

### Package

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

<LivePulseBadge />
```

### shadcn copy

```tsx
import { LivePulseBadge } from "@/components/ui/live-pulse-badge";

<LivePulseBadge />
```

