UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 1.24 kB
export class SvgGestureTwoFingerTap 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.008 3.5a.999.999 0 111.997 0v4.986l.013-.019a1.05 1.05 0 01.907-.473 1.063 1.063 0 011.084 1.032v.017a1.051 1.051 0 01.907-.474A1.063 1.063 0 0114 9.601v.034l-.01 3.086a3.172 3.172 0 01-1.017 2.312A3.483 3.483 0 0110.54 16H7.91a3.941 3.941 0 01-3.013-1.36l-2.635-3.033a.951.951 0 01-.24-.787.998.998 0 01.447-.689 1.084 1.084 0 011.343.115l1.068 1a.12.12 0 00.127.035V5a.992.992 0 011.983-.073V8.5a.5.5 0 001 0z"/><path d="M4.008 7.228V5.082C4.008 5.054 4 5.028 4 5a2.002 2.002 0 012-2h.007c.009 0 .017.003.026.004.05.003.1.01.15.016l.08.011.671.09.283-.504a2 2 0 01.361-.504l.018-.019a2.002 2.002 0 01.401-.315l.013-.007a1.984 1.984 0 01.411-.176 1.92 1.92 0 01.11-.032 1.977 1.977 0 01.454-.062L9 1.5h.007a2.002 2.002 0 011.998 2v2.217a2.99 2.99 0 10-4.61-3.677A2.962 2.962 0 006 2a2.99 2.99 0 00-1.992 5.228z" opacity=".55"/></svg>`; } } customElements.define('svg-gesture-two-finger-tap', SvgGestureTwoFingerTap); export default SvgGestureTwoFingerTap;