\n {bars.map((bar) => (\n
\n ))}\n
\n );\n});\nVolumeBars.displayName = \"VolumeBars\";\n\ninterface ProgressBarProps {\n currentTime: number;\n totalDuration: number;\n onSeek: (newTime: number) => void;\n}\n\nconst ProgressBar = React.memo(\n ({ currentTime, totalDuration, onSeek }: ProgressBarProps) => {\n const progress =\n (currentTime / totalDuration) * PROGRESS_PERCENTAGE_MULTIPLIER;\n\n const handleClick = (e: React.MouseEvent