interface LongPressWaveOverlayProps { active: boolean; /** Smaller crest/fill tuned for dense album-card play buttons. */ size?: 'default' | 'compact'; } export function LongPressWaveOverlay({ active, size = 'default' }: LongPressWaveOverlayProps) { const compact = size === 'compact'; return (