/* Tiny shared SVG primitives — the 4-point sparkles like on the mascot, etc. */
function Sparkle({ size = 32, color, style, className }) {
// 4-point star, like the mascot's sparkles
return (
);
}
function Star({ size = 16, filled = true, color = 'currentColor' }) {
return (
);
}
function ArrowRight({ size = 18, color = 'currentColor' }) {
return (
);
}
function IconPin({ size = 28, color = 'currentColor' }) {
return (
);
}
function IconClock({ size = 20, color = 'currentColor' }) {
return (
);
}
function IconInstagram({ size = 20, color = 'currentColor' }) {
return (
);
}
function IconBean({ size = 24, color = 'currentColor' }) {
return (
);
}
function IconCup({ size = 22, color = 'currentColor' }) {
return (
);
}
function IconLeaf({ size = 22, color = 'currentColor' }) {
return (
);
}
function IconWhatsapp({ size = 18, color = 'currentColor' }) {
return (
);
}
/* Decorative wavy underline */
function WaveUnderline({ width = 220, color = 'currentColor' }) {
return (
);
}
Object.assign(window, {
Sparkle, Star, ArrowRight, IconPin, IconClock, IconInstagram,
IconBean, IconCup, IconLeaf, IconWhatsapp, WaveUnderline
});