@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 644 B
JavaScript
export class SvgLoop 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="M11.5 4H8V2.6a.61.61 0 00-.277-.519.52.52 0 00-.554-.002l-3.89 2.4a.625.625 0 000 1.042l3.89 2.4a.52.52 0 00.554-.002A.61.61 0 008 7.4V5.897h3.5a2.603 2.603 0 110 5.206h-7a2.592 2.592 0 01-1.6-4.64l-.146-.091A1.618 1.618 0 012 5a1.602 1.602 0 01.033-.258A4.496 4.496 0 004.5 13h7a4.5 4.5 0 000-9z"/></svg>`;
}
}
customElements.define('svg-loop', SvgLoop);
export default SvgLoop;