import type { CSSProperties } from 'react'; interface WaveformProps { active: boolean; } const heights = [20, 34, 48, 30, 56, 76, 42, 64, 88, 46, 74, 36, 58, 80, 44]; export const Waveform = ({ active }: WaveformProps) => ( );