import { ArrowRight } from "lucide-react"; import { Button } from "@/components/ui/button"; interface ProgressBarProps { currentStep: number; totalSteps: number; onSkip?: () => void; } export function ProgressBar({ currentStep, totalSteps, onSkip, }: ProgressBarProps) { const progressPercentage = ((currentStep + 1) / totalSteps) * 100; return (
{currentStep + 1}/{totalSteps}
{currentStep > 1 && onSkip && ( )}
); }