const React = window.React; const I = (size = 18, children, extra = {}) => ( ); function IconArrowRight({ size = 18 }) { return I(size, <>); } function IconCheck({ size = 14, strokeWidth = 2 }) { return I(size, , { strokeWidth }); } function IconPhone({ size = 16 }) { return I(size, ); } function IconPin({ size = 16 }) { return I(size, <>); } function IconClock({ size = 16 }) { return I(size, <>); } function IconMail({ size = 16 }) { return I(size, <>); } function IconShield({ size = 16 }) { return I(size, <>); } function IconFlask({ size = 20 }) { return I(size, <>); } function IconSparkle({ size = 18, strokeWidth = 1.7 }) { return I(size, <>, { strokeWidth }); } function IconHeart({ size = 20 }) { return I(size, ); } function IconSnow({ size = 20 }) { return I(size, <>); } function IconMicroscope({ size = 20 }) { return I(size, <>); } function IconLeaf({ size = 20 }) { return I(size, ); } function IconUsers({ size = 20 }) { return I(size, <>); } function IconLock({ size = 12 }) { return I(size, <>); } function IconStar({ size = 14 }) { return (); } function IconWhatsapp({ size = 26 }) { return (); } Object.assign(window, { IconArrowRight, IconCheck, IconPhone, IconPin, IconClock, IconMail, IconShield, IconFlask, IconSparkle, IconHeart, IconSnow, IconMicroscope, IconLeaf, IconUsers, IconLock, IconStar, IconWhatsapp });