@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 418 B
JavaScript
export class SvgUpgrade 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="M5 14v1h6v-1zm6-4H5v1h6zm-6 3h6v-1H5zm0-4h6V7h3L8 0 2 7h3z"/></svg>`;
}
}
customElements.define('svg-upgrade', SvgUpgrade);
export default SvgUpgrade;