// Quantum Spaces — bespoke EMR-source line icons + small UI glyphs.
// Stroke-only, currentColor, 0 0 40 40 viewBox. Exported to window.
const SOURCE_ICONS = {
power: (
),
cell: (
),
devices: (
),
satellites: (
),
};
function SourceIcon({ kind }) { return SOURCE_ICONS[kind] || null; }
// Domain icons for the Why Now maturity matrix — air / water / noise / EMR.
const DOMAIN_ICONS = {
air: (
),
water: (
),
noise: (
),
emr: (
),
};
function DomainIcon({ kind }) { return DOMAIN_ICONS[kind] || null; }
Object.assign(window, { SourceIcon, SOURCE_ICONS, DomainIcon, DOMAIN_ICONS });