/* GoldenPharm site — Lucide-style inline icons (Lucide, MIT — DS-approved substitution). GPIcons.name() returns an node sized to its container; color via currentColor. */ const _svg = (children, extra = {}) => ( {children} ); const GPIcons = { // --- from the design system kit --- pill: () => _svg(<>), truck: () => _svg(<>), shield: () => _svg(<>), thermometer: () => _svg(), flask: () => _svg(<>), microscope: () => _svg(<>), search: () => _svg(<>), menu: () => _svg(<>), close: () => _svg(<>), arrowRight: () => _svg(<>), arrowUpRight: () => _svg(<>), arrowUp: () => _svg(<>), check: () => _svg(), phone: () => _svg(), mail: () => _svg(<>), mapPin: () => _svg(<>), clock: () => _svg(<>), package: () => _svg(<>), globe: () => _svg(<>), award: () => _svg(<>), heart: () => _svg(), // --- additions for the marketing site --- sparkle: () => _svg(), sparkles: () => _svg(<>), plus: () => _svg(<>), play: () => _svg(), chevronRight: () => _svg(), chevronLeft: () => _svg(), droplet: () => _svg(), syringe: () => _svg(<>), leaf: () => _svg(<>), sun: () => _svg(<>), send: () => _svg(<>), quote: () => _svg(<>), users: () => _svg(<>), calendar: () => _svg(<>), building: () => _svg(<>), fileCheck: () => _svg(<>), headset: () => _svg(<>), star: () => _svg(), instagram: () => _svg(<>), facebook: () => _svg(), linkedin: () => _svg(<>), stethoscope: () => _svg(<>), }; window.GPIcons = GPIcons;