feat: dyamic stepper form forgot password

This commit is contained in:
egagofur
2025-03-30 22:41:06 +07:00
parent b62c762cf9
commit d58ad58ef8
9 changed files with 470 additions and 60 deletions
+25
View File
@@ -0,0 +1,25 @@
import { cn } from '@imphnen-frontend-service/utils';
import React from 'react';
interface StepperProps {
currentStep: number;
totalSteps: number;
className?: string;
}
const Stepper: React.FC<StepperProps> = ({
currentStep,
totalSteps,
className,
}) => {
return (
<div className={cn('text-center mb-4', className)}>
<p className="text-neutral-400 text-lg">
Langkah {currentStep} dari {totalSteps}
</p>
</div>
);
};
export { Stepper };
export type { StepperProps };