class AppLinkElement extends HTMLElement { static observedAttributes = ["icon", "href", "target"]; constructor() { super(); this.innerHTML = ` ${this.textContent} `; } } customElements.define("app-link", AppLinkElement);