/** Based on https://iconify.design/ * */ import type { SVGProps } from 'react'; type SVGIcon = SVGProps; //RiMapPinLine const Map = (props: SVGIcon) => { return ( ); }; //MynauiEnvelope const Envelope = (props: SVGIcon) => { return ( ); }; //IcBaselineWhatsapp const Whatsapp = (props: SVGIcon) => { return ( ); }; //IcBaselineTelegram const Telegram = (props: SVGIcon) => { return ( ); }; // CiPhone const Phone = (props: SVGIcon) => { return ( ); }; //HugeiconsVk const Vk = (props: SVGIcon) => { return ( ); }; //MdiYoutube const Youtube = (props: SVGIcon) => { return ( ); }; //WeuiArrowFilled const MenuArrow = (props: SVGIcon) => { return ( ); }; //MagePhoneFill const BtnPhone = (props: SVGIcon) => ( ); //HealthiconsHomeOutline const Home = (props: SVGProps) => ( ); const Icons = Object.assign( {}, { Map, Envelope, Whatsapp, Telegram, Phone, Vk, Youtube, MenuArrow, BtnPhone, Home, }, ); export { Icons };