@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 495 B
JavaScript
export class SvgDisconnect extends HTMLElement {
constructor() { super(); }
connectedCallback() {
this.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="1rem" height="1rem" fill="var(--iui-color-icon-muted, currentColor)"><path d="M8 0a8 8 0 108 8 8 8 0 00-8-8M1.5 8a6.46 6.46 0 011.41-4L12 13.09A6.49 6.49 0 011.5 8m11.59 4L4 2.91A6.49 6.49 0 0113.09 12"/></svg>`;
}
}
customElements.define('svg-disconnect', SvgDisconnect);
export default SvgDisconnect;