// 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"}) => ( {/* Main branch bottom leaves */} {/* Main branch top leaves */} {/* End leaf main branch */} {/* Secondary branch bottom leaves */} {/* Secondary branch top leaves */} {/* End leaf secondary branch */} ); const LeafSprig = ({size=80, color="#7da086", opacity=0.9}) => ( {/* End leaf */} ); const SmallLeafIcon = ({size=18, color="currentColor"}) => ( ); // Logo - Image based BOTANICA logo const BotanicaLogo = ({size=36}) => { return ( BOTANICA ); }; window.LeafSpray = LeafSpray; window.LeafSprig = LeafSprig; window.SmallLeafIcon = SmallLeafIcon; window.BotanicaLogo = BotanicaLogo;