@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 465 B
JavaScript
export class SvgImport 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="M4 3.4h10v7h-2.2l-2.5 2H16v-11H2V7l2-1.6z"/><path d="M0 13.3c1.7-1.7 3.7-3.1 7-3v2l5-4-5-4v2c-3.5 0-7 3.1-7 7"/></svg>`;
}
}
customElements.define('svg-import', SvgImport);
export default SvgImport;