/* =========================================================================
icons.jsx — small, single-color line icons. No hand-drawn illustrations.
========================================================================= */
const Icon = ({ name, size = 24, stroke = 1.6 }) => {
const common = {
width: size, height: size, viewBox: "0 0 24 24",
fill: "none", stroke: "currentColor",
strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round",
"aria-hidden": true
};
switch (name) {
case "cash": return (
);
case "unlock": return (
);
case "wallet": return (
);
case "trending": return (
);
case "badge": return (
);
case "upload": return (
);
case "check": return (
);
case "phone": return (
);
case "money": return (
);
case "bolt": return (
);
case "shield": return (
);
case "tune": return (
);
case "whatsapp": return (
);
case "instagram": return (
);
case "snapchat": return (
);
case "tiktok": return (
);
case "arrow": return (
);
case "house": return (
);
case "image": return (
);
default: return ;
}
};
window.Icon = Icon;