// src/wc-blink.js var WCBlink = class extends HTMLElement { constructor() { super(); const template = document.createElement("template"); template.innerHTML = WCBlink.template(); this.attachShadow({mode: "open"}); this.shadowRoot.appendChild(document.importNode(template.content, true)); } static template() { return `