class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `
`; // Inicializar Feather Icons após renderizar setTimeout(() => { if (typeof feather !== 'undefined') { feather.replace(); } }, 0); } } customElements.define('custom-header', CustomHeader);