import { cn } from '@/lib/utils';
interface Props {
step1?: string;
step2?: string;
step3?: string;
step4?: string;
step5?: string;
}
const StepCircle = ({ step, title }: { step: string; title: string }) => {
return (
);
};
const StepNavigator = (props: Props) => {
const {
step1 = '',
step2 = '',
step3 = '',
step4 = '',
step5 = '',
} = props;
return (
{/* Separator for Step 1 to Step 2 */}
{/* Separator for Step 2 to Step 3 */}
{/* Separator for Step 3 to Step 4 */}
{/* Separator for Step 4 to Step 5 */}
);
};
export default StepNavigator;