@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 482 B
JavaScript
export class SvgGraph 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="M15 14.5L13 13v1H2.4l2.1-3.6 2.1 3.1 2-5 2 3 2.8-6.6 1 .5-.1-3.6L11.5 4l1 .5-2.1 5-2-3-2 5-1.9-2.9L2 12.7V3h1L1.5 1 0 3h1v12h12v1z"/></svg>`;
}
}
customElements.define('svg-graph', SvgGraph);
export default SvgGraph;