@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 1.28 kB
JavaScript
export class SvgGestureOneFingerTapDouble 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 10.16a1.05 1.05 0 00-1.084-1.016 1.027 1.027 0 00-.907.491v-.034a1.063 1.063 0 00-1.084-1.032 1.051 1.051 0 00-.907.474v-.017a1.063 1.063 0 00-1.084-1.032 1.05 1.05 0 00-.906.474l-.013.018V5a.999.999 0 10-1.997 0v6.281a.12.12 0 01-.128-.035l-1.068-1a1.084 1.084 0 00-1.343-.115.998.998 0 00-.447.689.952.952 0 00.24.787l2.635 3.032A3.942 3.942 0 008.921 16h1.635a3.472 3.472 0 002.428-.967A3.175 3.175 0 0014 12.72z"/><path d="M1.999 5a5 5 0 119.251 2.602 2.108 2.108 0 00-.325-.033 2.207 2.207 0 00-.487.054 2.08 2.08 0 00-.26-.221A3.961 3.961 0 0010.998 5a4 4 0 10-5.981 3.454v.718a2.074 2.074 0 00-.935-.221c-.033 0-.065.013-.099.014A4.975 4.975 0 012 5zm5-3a2.99 2.99 0 00-1.981 5.237V5.183c-.006-.061-.019-.12-.019-.183a2.002 2.002 0 012-2h.017a2.002 2.002 0 011.999 2v1.995c.064.003.125.018.188.026A2.99 2.99 0 007 2z" opacity=".55"/></svg>`;
}
}
customElements.define('svg-gesture-one-finger-tap-double', SvgGestureOneFingerTapDouble);
export default SvgGestureOneFingerTapDouble;