UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 713 B
export class SvgList 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="M2 2a.945.945 0 01-1 1 .945.945 0 01-1-1 .945.945 0 011-1 1.002 1.002 0 011 1m0 4a.945.945 0 01-1 1 1.002 1.002 0 01-1-1 .945.945 0 011-1 1.002 1.002 0 011 1m0 4a.945.945 0 01-1 1 1.002 1.002 0 01-1-1 .945.945 0 011-1 1.002 1.002 0 011 1m0 4a.945.945 0 01-1 1 1.002 1.002 0 01-1-1 .945.945 0 011-1 1.075 1.075 0 011 1M4 1h12v2H4zm0 4h12v2H4zm0 4h12v2H4zm0 4h12v2H4z"/></svg>`; } } customElements.define('svg-list', SvgList); export default SvgList;