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

    {item.name}

  • ))}
); } export default Step;