// Icon components — minimal line/glyph style (no copyrighted marks)
const Icon = {
Logo: ({ size = 26, color = "currentColor" }) => (
// Abstract beaver/leaf mark — original mark, not a brand recreation
),
Instagram: ({ size = 20, color = "currentColor" }) => (
),
ArrowRight: ({ size = 14 }) => (
),
ChevronDown: ({ size = 16 }) => (
),
Menu: () => (
),
Close: () => (
),
Leaf: () => (
),
Scale: () => (
),
Map: () => (
),
HardHat: () => (
),
Building: () => (
),
Mail: () => (
),
Phone: () => (
),
Pin: () => (
),
Check: () => (
),
Send: () => (
),
};
window.Icon = Icon;