@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 555 B
JavaScript
export class SvgSelectionClear 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="M2 5H1v2h1Zm0 3H1v2h1Zm7-6H7v1h2ZM6 2H4v1h2ZM2 3h1V2H1v2h1Zm12 7h1V8h-1Zm0 2h-1v1h2v-2h-1Zm0-5h1V5h-1Zm-7 6h2v-1H7Zm3 0h2v-1h-2Zm-6.85.75 11.1-11.1-1.4-1.4-11.1 11.1Z"/></svg>`;
}
}
customElements.define('svg-selection-clear', SvgSelectionClear);
export default SvgSelectionClear;