@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 792 B
JavaScript
export class SvgGestureTouch 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 8.16a1.05 1.05 0 00-1.087-1.016 1.03 1.03 0 00-.908.491v-.034a1.065 1.065 0 00-1.087-1.032 1.054 1.054 0 00-.908.474v-.017a1.065 1.065 0 00-1.087-1.032 1.053 1.053 0 00-.908.474l-.013.018V3a1 1 0 00-2.001 0v6.281a.121.121 0 01-.128-.035l-1.07-1a1.088 1.088 0 00-1.346-.115.998.998 0 00-.449.689.95.95 0 00.242.787l2.64 3.032A3.953 3.953 0 008.91 14h1.639a3.483 3.483 0 002.433-.967A3.172 3.172 0 0014 10.72z"/></svg>`;
}
}
customElements.define('svg-gesture-touch', SvgGestureTouch);
export default SvgGestureTouch;