UNPKG

@itwin/itwinui-icons-elements

Version:

Exports svgs from @itwin/itwinui-icons as custom elements

8 lines 1.03 kB
export class SvgWifiDisabled 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="M15.53 9.88l-1.41-1.41L12 10.59 9.88 8.47 8.46 9.88 10.59 12l-2.13 2.12 1.42 1.41L12 13.41l2.12 2.12 1.41-1.41L13.41 12zM8.49 8.44a4.313 4.313 0 00-3.9 1.64c-.32.367.366.772.55 1.01a.332.332 0 00.27.11.353.353 0 00.26-.15 2.918 2.918 0 011.13-.9zM8.01 12a.997.997 0 00-.61 1.77l1.38-1.38a1.006 1.006 0 00-.77-.39zm7.9-6.48a10.728 10.728 0 00-15.82 0 .36.36 0 00.02.5c.161.12.535.64.77.61a.279.279 0 00.25-.12 9.273 9.273 0 0113.74.02.487.487 0 00.25.12.325.325 0 00.25-.11l.52-.52a.36.36 0 00.02-.5zm-3.09 1.6a7.373 7.373 0 00-10.39.75.347.347 0 00.02.49c.238.196.688.933 1.03.5 2.398-2.929 6.775-2.45 8.95-.12l1.01-1.01a5.957 5.957 0 00-.62-.61z"/></svg>`; } } customElements.define('svg-wifi-disabled', SvgWifiDisabled); export default SvgWifiDisabled;