Audio Player
View in FigmaAn audio playback component with play/pause, progress bar, time display, and volume.
Media & VisualsImport
import { AudioPlayer } from "@/components/ui"API
| Prop | Type | Default | Description |
|---|---|---|---|
| src | string | — | Audio source URL. |
| title | string | — | Track title. |
| artist | string | — | Artist name. |
| autoPlay | boolean | false | Start playing automatically. |
| onPlay | () => void | — | Callback when playback starts. |
| onPause | () => void | — | Callback when playback pauses. |