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