27 lines
832 B
JavaScript
27 lines
832 B
JavaScript
import CustomLoading from "@/app/component/loading/Custom";
|
|
import Item from "./Item";
|
|
|
|
function Locations({ doctor }) {
|
|
return (
|
|
<div>
|
|
<p className="text-[#525252] text-[16px] md:text-[18px] lg:text-[20px] font-bold">
|
|
موقعیت مکانی{" "}
|
|
</p>
|
|
<ul className="flex w-full mt-[24px] flex-col justify-center items-start">
|
|
{doctor?.address?.map((item, idx) => (
|
|
<CustomLoading key={idx} width="full" height={40}>
|
|
<li className="w-full">
|
|
<Item data={item} />
|
|
{doctor?.address.length > idx + 1 && (
|
|
<span className="w-full h-px bg-[#EFEFEF] block my-[12px] md:my-[14px] lg:my-[16px]"></span>
|
|
)}
|
|
</li>
|
|
</CustomLoading>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Locations;
|