// GSP website UI kit — inline line icons (Feather/Lucide visual language). // stroke-width 1.5, fill none, rounded — matches the brand iconography spec. const Icon = ({ name, size = 24, stroke = 'currentColor', sw = 1.5, style = {} }) => { const paths = { shield: , 'shield-check': , eye: , video: , bell: , lock: , home: , 'map-pin': , clock: , check: , phone: , globe: , award: , navigation: , monitor: , chevron: , facebook: , arrow: , smartphone: , zap: , wifi: , layers: , wrench: , 'check-circle': , mail: , whatsapp: , 'map-pin2': , menu: , x: , }; return ( {paths[name] || null} ); }; window.Icon = Icon;