// DISPROQUILIM icons — Lucide-style line icons, inlined as SVG paths. // Usage: or const ICON_PATHS = { // navigation / UI phone: , mail: , mapPin: , arrowRight: , send: , check: , checkCircle:, chevronDown:, plus: , minus: , shield: , shieldCheck:, // brand / value droplet: , sparkles: , flask: , factory: , briefcase: , chefHat: , shoppingCart: , truck: , headset: , clipboard: , clipboardSearch: , fileText: , fileDollar: , messageCircle: , messageMore:, user: , building: , bottle: , award: , package: , calendarCheck: , // social facebook: , linkedin: , instagram: , youtube: , }; function Icon({ name, size = 24, stroke = 2, color = 'currentColor', style = {}, className = '' }) { const path = ICON_PATHS[name]; if (!path) return null; return ( {path} ); } window.Icon = Icon; window.ICON_PATHS = ICON_PATHS;