@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 628 B
JavaScript
export class SvgSyncDisabled 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="M8.17 13H4v2.531L0 12l4-3.531V11h4.17l1 1zM2 5h10v2.531L16 4 12 .469V3H1a1.048 1.048 0 00-1 1v5.844L2 8zm12.12 3.465l-2.121 2.121-2.121-2.121-1.414 1.414L10.585 12l-2.121 2.121 1.414 1.414 2.121-2.121 2.121 2.121 1.414-1.414L13.413 12l2.121-2.121z"/></svg>`;
}
}
customElements.define('svg-sync-disabled', SvgSyncDisabled);
export default SvgSyncDisabled;