/* Lucide-style minimal icons, stroke 1.5 — matches GE PH brand */ const Icon = ({ name, size = 16, color = 'currentColor', className }) => { const paths = { home: <>, grid: <>, search: <>, target: <>, bar: <>, line: <>, link: <>, settings: <>, plug: <>, chev: <>, chevR: <>, chevL: <>, arrowUp: <>, arrowDown: <>, plus: <>, download: <>, filter: <>, calendar: <>, bell: <>, refresh: <>, moon: <>, sun: <>, ext: <>, user: <>, check: <>, x: <>, dot: <>, spark: <>, page: <>, flag: <>, layers: <>, globe: <>, eye: <>, play: <>, }; return ( {paths[name]} ); }; window.Icon = Icon;