// Equalizer/waveform mark for the MelodyMuse header. The SVG has explicit // width/height attributes (in addition to the Tailwind class) so it can't // accidentally balloon to fill its parent if the CSS fails to load. interface EqualizerIconProps { className?: string; size?: number; } export function EqualizerIcon({ className, size = 24 }: EqualizerIconProps) { return ( ); }