import CrownIcon from './components/CrownIcon.svelte'; // Expose a function to mount the CrownIcon component globally // This allows Django templates to easily initialize Svelte components. window.mountCrownIcon = (selector, props) => { const target = document.querySelector(selector); if (target) { new CrownIcon({ target: target, props: props, }); } };