import TelefonPoster from "@/components/icons/TelefonPoster"; function Telefon({ data }) { return (

تلفن:

{data?.address?.[0]?.phone}

{data?.address && data?.address.length > 1 && data?.address.map( (item, idx) => idx !== 0 && ( {item?.phone} - ) )}
); } export default Telefon;