import { cn } from "@/lib/utils"; interface PlaybackPageIndicatorProps { total: number; current: number; progress: number; onGoTo: (index: number) => void; } export function PlaybackPageIndicator({ total, current, progress, onGoTo, }: PlaybackPageIndicatorProps) { if (total === 0) return null; return (
{Array.from({ length: total }, (_, i) => ( ))}
); }