# Voice Lesson Player

A configurable, accessible voice lesson player surface for AI product workflows.

## Installation

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

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

## Preview

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


## Source

### ui/voice-lesson-player.tsx

```tsx
"use client";

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

export { VoiceLessonPlayer } from "@/components/amro/components/learning";
export type { VoiceLessonPlayerProps } from "@/components/amro/components/learning";
```



## Usage

A configurable, accessible voice lesson player surface for AI product workflows.

### Package

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

<VoiceLessonPlayer />
```

### shadcn copy

```tsx
import { VoiceLessonPlayer } from "@/components/ui/voice-lesson-player";

<VoiceLessonPlayer />
```

