frigate/web/src/components/indicators/StepIndicator.tsx

32 lines
724 B
TypeScript
Raw Normal View History

import { cn } from "@/lib/utils";
type StepIndicatorProps = {
steps: string[];
currentStep: number;
};
export default function StepIndicator({
steps,
currentStep,
}: StepIndicatorProps) {
return (
<div className="flex flex-row justify-evenly">
{steps.map((name, idx) => (
2025-03-17 21:31:45 +03:00
<div
key={idx}
className="flex flex-col items-center justify-center gap-2"
>
<div
className={cn(
"flex size-16 items-center justify-center rounded-full",
currentStep == idx ? "bg-selected" : "border-2 border-selected",
)}
>
{idx + 1}
</div>
{name}
</div>
))}
</div>
);
}