2023-11-20 14:01:19 +00:00
|
|
|
import React from "react";
|
|
|
|
|
2023-11-25 16:01:09 +00:00
|
|
|
export const OnboardingStepIndicator = ({ step }: { step: number }) => (
|
2023-11-20 14:01:19 +00:00
|
|
|
<div className="flex items-center justify-center">
|
2023-11-23 08:15:00 +00:00
|
|
|
<div className="h-3 w-3 rounded-full bg-custom-primary-100 z-10" />
|
2023-11-20 14:01:19 +00:00
|
|
|
<div className={`h-1 w-14 -ml-1 ${step >= 2 ? "bg-custom-primary-100" : "bg-onboarding-background-100"}`} />
|
|
|
|
<div
|
|
|
|
className={` z-10 -ml-1 rounded-full ${
|
2023-11-23 08:15:00 +00:00
|
|
|
step >= 2 ? "bg-custom-primary-100 h-3 w-3" : " h-2 w-2 bg-onboarding-background-100"
|
2023-11-20 14:01:19 +00:00
|
|
|
}`}
|
|
|
|
/>
|
|
|
|
<div className={`h-1 w-14 -ml-1 ${step >= 3 ? "bg-custom-primary-100" : "bg-onboarding-background-100"}`} />
|
|
|
|
<div
|
|
|
|
className={`rounded-full -ml-1 z-10 ${
|
2023-11-23 08:15:00 +00:00
|
|
|
step >= 3 ? "bg-custom-primary-100 h-3 w-3" : "h-2 w-2 bg-onboarding-background-100"
|
2023-11-20 14:01:19 +00:00
|
|
|
}`}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|