/** * Action Links List Component * A container for icon link buttons with dividers */ class ActionLinksList extends HTMLElement { constructor() { super(); this.attachShadow({ mode: "open" }); } connectedCallback() { this.render(); } render() { this.shadowRoot.innerHTML = `