@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 446 B
JavaScript
export class SvgMerge extends HTMLElement {
constructor() { super(); }
connectedCallback() {
this.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="1rem" height="1rem" fill="var(--iui-color-icon-muted, currentColor)"><path d="M9 9.586V6h2L8 1 5 6h2v3.586l-3.707 3.707 1.414 1.414L8 11.414l3.293 3.293 1.414-1.414L9 9.586"/></svg>`;
}
}
customElements.define('svg-merge', SvgMerge);
export default SvgMerge;