@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 441 B
JavaScript
export class SvgIsolate extends HTMLElement {
constructor() { super(); }
connectedCallback() {
this.innerHTML = `<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" width="1rem" height="1rem" fill="var(--iui-color-icon-muted, currentColor)"><path d="M9 7h6V1H9zm5-1h-4V2h4zM1 7h6V1H1zm5-1H2V2h4zm3 9h6V9H9zm5-1h-4v-4h4zM1 15h6V9H1z"/></svg>`;
}
}
customElements.define('svg-isolate', SvgIsolate);
export default SvgIsolate;