@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 419 B
JavaScript
export class SvgMenu extends HTMLElement {
constructor() { super(); }
connectedCallback() {
this.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g fill-rule="evenodd" width="1rem" height="1rem" fill="var(--iui-color-icon-muted, currentColor)"><path d="M0 12h16v2H0v-2zM0 7h16v2H0V7zM0 2h16v2H0V2z"/></g></svg>`;
}
}
customElements.define('svg-menu', SvgMenu);
export default SvgMenu;