import { Button } from "@/components/ui/button"; import { Check, ChevronLeft, ChevronRight, X } from "lucide-react"; interface ControlBarProps { currentIndex: number; videosLength: number; hasMore: boolean; onPrevious: () => void; onNext: () => void; onLabel: (label: boolean) => void; } export function ControlBar({ currentIndex, videosLength, hasMore, onPrevious, onNext, onLabel }: ControlBarProps) { return (
); }