@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 947 B
JavaScript
export class SvgOffline 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="M14.17 6.46c0 .19-.02.37-.06.54a5.03 5.03 0 00-2.61-.71 5.18 5.18 0 00-4.67 2.92H2.74C1.24 9.21 0 7.97 0 6.46c0-1.41.97-2.48 2.3-2.65v-.27c0-.97.8-1.68 1.77-1.68.45 0 .8.18 1.15.44C5.76 1.06 6.46 0 8.41 0c2.39 0 3.54 1.77 3.54 3.72v.26c1.24.09 2.22 1.07 2.22 2.48zm-2.276 5.04l1.519 1.462-.45.45-1.463-1.518-1.462 1.519-.45-.45 1.518-1.463-1.519-1.462.45-.45 1.463 1.518 1.462-1.519.45.45zM11.5 7.844c-2.025 0-3.656 1.631-3.656 3.656s1.631 3.656 3.656 3.656 3.656-1.63 3.656-3.656-1.631-3.656-3.656-3.656M16 11.5c0 2.475-2.025 4.5-4.5 4.5S7 13.975 7 11.5 9.025 7 11.5 7 16 9.025 16 11.5z"/></svg>`;
}
}
customElements.define('svg-offline', SvgOffline);
export default SvgOffline;