// Botanical leaf SVG decorations — used as backgrounds and ornaments
const SvgLeaf = ({ x, y, dx, dy, w = 0.45 }) => {
const cx1 = x + dx * 0.5 - dy * w;
const cy1 = y + dy * 0.5 + dx * w;
const cx2 = x + dx * 0.5 + dy * w;
const cy2 = y + dy * 0.5 - dx * w;
return (
);
};
const LeafSpray = ({flip=false, size=180, opacity=0.7, color="#7da086"}) => (
);
const LeafSprig = ({size=80, color="#7da086", opacity=0.9}) => (
);
const SmallLeafIcon = ({size=18, color="currentColor"}) => (
);
// Logo - Image based BOTANICA logo
const BotanicaLogo = ({size=36}) => {
return (
);
};
window.LeafSpray = LeafSpray;
window.LeafSprig = LeafSprig;
window.SmallLeafIcon = SmallLeafIcon;
window.BotanicaLogo = BotanicaLogo;