UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 544 B
export class SvgStatusSuccessHollow 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="M8 1.5A6.5 6.5 0 111.5 8 6.5 6.5 0 018 1.5M8 0a8 8 0 108 8 8 8 0 00-8-8zM6.651 11.994L3 8.594l1.396-1.3 2.362 2.2 4.833-4.5 1.396 1.3z"/></svg>`; } } customElements.define('svg-status-success-hollow', SvgStatusSuccessHollow); export default SvgStatusSuccessHollow;