@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 401 B
JavaScript
export class SvgScale 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="M16 1H4v7H0v7h8v-4h8zM7 14H1V9h3v2h3zm8-4H5V2h10z"/></svg>`;
}
}
customElements.define('svg-scale', SvgScale);
export default SvgScale;