/* Tidewell — minimal SVG glyphs for product cards. Monochrome, line-based. */
function ProductIcon({ name }) {
const stroke = "currentColor";
const sw = 1.25;
const common = { fill: "none", stroke, strokeWidth: sw, strokeLinecap: "round", strokeLinejoin: "round" };
switch (name) {
case "cover-auto":
return (
);
case "cover-manual":
return (
);
case "solar":
return (
);
case "salt":
return (
);
case "shower":
return (
);
case "heatpump":
return (
);
case "light":
return (
);
case "filter":
return (
);
case "cleaner":
return (
);
case "fitting":
return (
);
default:
return null;
}
}
window.ProductIcon = ProductIcon;