import CalendarTick from "@/components/icons/CalendarTick"; import LocationAdd from "@/components/icons/LocationAdd"; import UserEdit from "@/components/icons/UserEdit"; function Step({ value }) { const list = [ { icon: = 0} />, name: "اطلاعات عمومی" }, { icon: = 1} />, name: "اطلاعات مطب" }, { icon: = 2} />, name: "روزهای کاری" }, ]; return (
    {list.map((item, idx) => (
  • = idx ? "bg-[#5559CE]" : "bg-[#F6F6F6]"}`} > {item.icon}

    = idx ? "font-bold text-[#5559CE]" : "font-normal text-[#616161]" }`} > {item.name}

    {list.length > idx + 1 && ( = idx ? "bg-[#5559CE]" : "bg-[#EFEFEF]" }`} > )}
  • ))}
); } export default Step;