// Astrological-sigil library for the Wandering Wizards UI kit. // // Two layers: // 1. — renders one hidden with every the page // needs. Mount once at the top of the tree. // 2. — a tiny wrapper for inline icons. // 3. The big game-sigil components (SigilSun/Moon/Magic/Pokemon/Riftbound/OnePiece) // are kept as standalone full-size SVGs for hero/game card art. function SigSprite() { return ( ); } function Sig({ name, size = 16, stroke = 1.3, style = {}, className = '' }) { return ( ); } // ─────────────────────────────────────────────────────────────── // Full-size game-card emblems (kept as-is from previous turn) // ─────────────────────────────────────────────────────────────── function SigilSun() { return ( ); } function SigilMoon() { return ( ); } function SigilMagic() { return ( ); } function SigilPokemon() { return ( ); } function SigilRiftbound() { return ( ); } function SigilOnePiece() { return ( ); } Object.assign(window, { Sig, SigSprite, SigilSun, SigilMoon, SigilMagic, SigilPokemon, SigilRiftbound, SigilOnePiece, });