import React from 'react' import { Button } from '@/components/ui/button' import { ChevronLeft, ChevronRight, Save } from 'lucide-react' interface StepperNavigationProps { currentStep: number totalSteps: number isSubmitting: boolean isEditMode: boolean onPrevious: () => void onNext: () => void onSubmit: () => void } const StepperNavigation: React.FC = ({ currentStep, totalSteps, isSubmitting, isEditMode, onPrevious, onNext, onSubmit, }) => { return (
Step {currentStep + 1} of {totalSteps}
{currentStep < totalSteps - 2 ? ( ) : currentStep === totalSteps - 2 ? ( ) : ( )}
) } export default StepperNavigation