UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 583 B
export class SvgProgressForwardCircular extends HTMLElement { constructor() { super(); } connectedCallback() { this.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="1rem" height="1rem" fill="var(--iui-color-icon-muted, currentColor)"><path d="M6.53 12.53l-1.06-1.06L8.939 8 5.47 4.53l1.06-1.06L11.06 8l-4.53 4.53z"/><path d="M8 1.5A6.5 6.5 0 111.5 8 6.507 6.507 0 018 1.5M8 0a8 8 0 108 8 8 8 0 00-8-8"/></svg>`; } } customElements.define('svg-progress-forward-circular', SvgProgressForwardCircular); export default SvgProgressForwardCircular;