refactor: rename component appropriately

This commit is contained in:
talksik
2026-03-12 06:20:00 -07:00
parent b8a98c6a8d
commit e6b04c8314
2 changed files with 24 additions and 5 deletions
@@ -1,16 +1,16 @@
import { cn } from "@/lib/utils";
interface PlaybackControlsProps {
interface PlaybackPageIndicatorProps {
total: number;
current: number;
onGoTo: (index: number) => void;
}
export function PlaybackControls({
export function PlaybackPageIndicator({
total,
current,
onGoTo,
}: PlaybackControlsProps) {
}: PlaybackPageIndicatorProps) {
if (total === 0) return null;
return (