// Botanical illustrations — herbarium-style line art.
// All use currentColor stroke, no fills (or minimal sepia fills).
// Drawn at varied viewBoxes to suit each composition.
// A trailing seaweed / algae frond — multiple slim leaves on a vertical stem
const BotanicalAlgae = ({ size = 100 }) => (
);
// Herbarium leaf branch — simple olive/laurel style
const BotanicalBranch = ({ size = 200 }) => (
);
// Simple fish silhouette — herbarium aquatic style
const BotanicalFish = ({ size = 200 }) => (
);
// Seed pod / capsule
const BotanicalSeed = ({ size = 80 }) => (
);
// Coral fan — multi-pronged
const BotanicalCoral = ({ size = 140 }) => (
);
// Topographic curves — for backgrounds / texture
const BotanicalTopo = ({ size = 200 }) => (
);
// Botanical decorative divider — small leaf with parentheses
const BotanicalDivider = ({ size = 60 }) => (
);
Object.assign(window, {
BotanicalAlgae,
BotanicalBranch,
BotanicalFish,
BotanicalSeed,
BotanicalCoral,
BotanicalTopo,
BotanicalDivider,
});