diff --git a/src/components/common/PlayingIndicator.tsx b/src/components/common/PlayingIndicator.tsx new file mode 100644 index 0000000..d3dddfe --- /dev/null +++ b/src/components/common/PlayingIndicator.tsx @@ -0,0 +1,22 @@ +/* + * "Hopping bars" equalizer indicator (YTM-style) shown next to the currently + * playing track. `animate` controls whether the bars bounce (playback active) + * or sit frozen at full height (paused). Reusable across track lists. + */ +interface Props { + animate?: boolean; + className?: string; +} + +export function PlayingIndicator({ animate = true, className }: Props) { + return ( +