# Talk Now Button

An availability-aware live conversation call to action with a restrained active-state pulse.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/talk-now-button.json
```

[Registry JSON](https://amro-ui.vercel.app/r/talk-now-button.json)

## Preview

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


## Source

### ui/talk-now-button.tsx

```tsx
"use client";

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

export { TalkNowButton } from "@/components/amro/components/shared";
export type { TalkNowButtonProps } from "@/components/amro/components/shared";
```



## Usage

An availability-aware live conversation call to action with a restrained active-state pulse.

### Package

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

<TalkNowButton />
```

### shadcn copy

```tsx
import { TalkNowButton } from "@/components/ui/talk-now-button";

<TalkNowButton />
```

