UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 473 B
export class SvgGroupUngroup extends HTMLElement { constructor() { super(); } connectedCallback() { this.innerHTML = `<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g fill-rule="evenodd" width="1rem" height="1rem" fill="var(--iui-color-icon-muted, currentColor)"><path d="M12 8a4 4 0 11-4 4 4 4 0 014-4" opacity=".5"/><path d="M4 0L0 8h8"/></g></svg>`; } } customElements.define('svg-group-ungroup', SvgGroupUngroup); export default SvgGroupUngroup;