// Inline SVG icons — minimal, mono-leaning, 1.5px stroke const Ico = ({ children, size = 16, ...rest }) => ( {children} ); const I = { Cube: (p) => , Stack: (p) => , Plus: (p) => , Check: (p) => , X: (p) => , Shuffle: (p) => , Arrow: (p) => , ExternalLink: (p) => , Copy: (p) => , Search: (p) => , Bell: (p) => , Sparkle: (p) => , Terminal: (p) => , Doc: (p) => , Clock: (p) => , Folder: (p) => , Globe: (p) => , Lock: (p) => , Eye: (p) => , Sun: (p) => , Moon: (p) => , Tag: (p) => , Zap: (p) => , GitBranch: (p) => , // Service-specific glyphs (abstract, original) Container: (p) => , Database: (p) => , Lightning: (p) => , Route: (p) => , Brain: (p) => , Layers: (p) => , Mail: (p) => , Queue: (p) => , Storage: (p) => , Shield: (p) => , Cloud: (p) => , Code: (p) => , Compass: (p) => , Megaphone: (p) => , LogOut: (p) => , User: (p) => , }; window.I = I;