Bell Labs hallway recording
Ambient sounds where UNIX, C, and more took shape.
0:000:00
import { Audio } from "@/components/tool-ui/audio";export function Example() { return ( <Audio id="audio-example" assetId="sample-audio" src="https://samplelib.com/lib/preview/mp3/sample-6s.mp3" title="Bell Labs hallway recording" description="Ambient sounds where UNIX, C, and more took shape." artwork="https://images.unsplash.com/photo-1454165205744-3b78555e5572" durationMs={30000} /> );}Play, pause, seek, and volume with browser controls
Album art or thumbnail alongside the player
Copy components/tool-ui/audio and the shared directory into your project.
pnpm dlx shadcn@latest add badge button card tooltipProp
Type
pnpm dlx shadcn@latest add badge button card tooltipimport { Audio } from "@/components/tool-ui/audio";
export function Example() {
return (
<Audio
id="audio-example"
assetId="sample-audio"
src="https://samplelib.com/lib/preview/mp3/sample-6s.mp3"
title="Bell Labs hallway recording"
description="Ambient sounds where UNIX, C, and more took shape."
artwork="https://images.unsplash.com/photo-1454165205744-3b78555e5572"
durationMs={30000}
/>
);
}