// Service icons used on the landing page cards.
window.LandingIcon = function LandingIcon({ kind, size = 18, color = "currentColor", strokeWidth = 1.8 }) {
const common = {
width: size,
height: size,
viewBox: "0 0 24 24",
fill: "none",
stroke: color,
strokeWidth,
strokeLinecap: "round",
strokeLinejoin: "round",
style: { flex: "0 0 auto", display: "inline-block" },
};
switch (kind) {
case "anchor":
return (
);
case "wrench":
return (
);
case "leaf":
return (
);
case "waves":
return (
);
case "box":
return (
);
case "cog":
return (
);
case "check":
return (
);
case "arrow":
return (
);
case "mail":
return (
);
case "phone":
return (
);
case "pin":
return (
);
default:
return null;
}
};