import { CheckIcon } from "@heroicons/react/24/outline"; import { CheckCircleIcon } from "@heroicons/react/24/solid"; const ProgressBar = ({ current, labels }) => { return (
{labels.map((label, index) => ( <>
{ index + 1 }

{ label }

{ index < (labels.length - 1) && (
) } ))}
) } export default ProgressBar;