// icons.jsx — minimal monoline SVG icons, shared to window. // Generic with a 24x24 viewBox, currentColor stroke. const ICON_PATHS = { arrowLeft: , chevronRight: , lock: <>, shield: , check: , spark: , flame: , handshake: , // category icons food: <>, cafe: <>, store: <>, office: <>, academy: <>, beauty: <>, mart: <>, dots: <>, // liability options doc: <>, camera: <>, crop: <>, image: <>, phone: , clock: <>, }; function Icon({ name, size = 24, stroke = 2, fill = "none", ...rest }) { return ( {ICON_PATHS[name] || null} ); } Object.assign(window, { Icon });