class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.render();
}
render() {
this.shadowRoot.innerHTML = `
`;
if (window.feather) {
setTimeout(() => feather.replace(), 0);
}
}
}
customElements.define('custom-footer', CustomFooter);