UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 435 B
export class SvgPauseCircular 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 0a8 8 0 108 8 8 8 0 00-8-8M7 11H5V5h2m4 6H9V5h2"/></svg>`; } } customElements.define('svg-pause-circular', SvgPauseCircular); export default SvgPauseCircular;