forked from github/plane
24 lines
842 B
TypeScript
24 lines
842 B
TypeScript
import React from "react";
|
|
|
|
const OnboardingStepIndicator = ({ step }: { step: number }) => {
|
|
return (
|
|
<div className="flex items-center justify-center">
|
|
<div className="h-4 w-4 rounded-full bg-custom-primary-100 z-10" />
|
|
<div className={`h-1 w-14 -ml-1 ${step >= 2 ? "bg-custom-primary-100" : "bg-custom-primary-20"}`} />
|
|
<div
|
|
className={` z-10 -ml-1 rounded-full ${
|
|
step >= 2 ? "bg-custom-primary-100 h-4 w-4" : " h-3 w-3 bg-custom-primary-20"
|
|
}`}
|
|
/>
|
|
<div className={`h-1 w-14 -ml-1 ${step >= 3 ? "bg-custom-primary-100" : "bg-custom-primary-20"}`} />
|
|
<div
|
|
className={`rounded-full -ml-1 z-10 ${
|
|
step >= 3 ? "bg-custom-primary-100 h-4 w-4" : "h-3 w-3 bg-custom-primary-20"
|
|
}`}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default OnboardingStepIndicator;
|