// Shark Service icon set — Lucide-style inline SVG, 2px stroke, 24px grid. // Mirrors the iClimate design-system Icon component pattern. function Icon({ name, size = 20, color = "currentColor", strokeWidth = 2, style }) { const s = { width: size, height: size, stroke: color, fill: "none", strokeWidth, strokeLinecap: "round", strokeLinejoin: "round", display: "block", ...style }; const P = { // chrome / contact phone: , mail: <>, mapPin: <>, clock: <>, send: <>, whatsapp:<>, viber: <>, instagram:<>, menu: <>, x: <>, chevronD:, chevronR:, arrowR: <>, check: , checkCircle: <>, // brand mark — Lucide Lab "waves-shark-fin" (ISC) shark: <>, coffee: <>, // services wrench: , droplet: , thermometer: , settings:<>, cpu: <>, disc: <>, calendarCheck: <>, building:<>, // why-us / trust shield: <>, award: <>, box: <>, zap: , receipt: <>, search: <>, // problem symptoms thermosnow: <>, waves: <>, alert: <>, power: <>, flame: , // misc clipboard: <>, truck: <>, sparkle: <>, }; return ; } window.Icon = Icon;