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 ? "before:right-0 !bg-transparent delay-700" : "before:-right-full" }`} >
    {item.icon}

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

    {list.length > idx + 1 && ( idx ? "before:right-0" : "before:-right-full"}`} > )}
  • ))}
); } export default Step;