@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 456 B
JavaScript
export class SvgProgressBackward 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="M10.43.5l1.756 1.756L6.442 8l5.744 5.744L10.43 15.5 2.93 8z"/></svg>`;
}
}
customElements.define('svg-progress-backward', SvgProgressBackward);
export default SvgProgressBackward;