UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 432 B
export class SvgCircle 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="M8 2.5A5.5 5.5 0 112.5 8 5.506 5.506 0 018 2.5M8 1a7 7 0 107 7 7 7 0 00-7-7z"/></svg>`; } } customElements.define('svg-circle', SvgCircle); export default SvgCircle;