@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 511 B
JavaScript
export class Svg2D 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="M12 5v.5a6.48 6.48 0 01-.18 1.5H14v7H7v-2.18a6.48 6.48 0 01-1.5.18H5v4h11V5z"/><path d="M5.5 2A3.5 3.5 0 112 5.5 3.5 3.5 0 015.5 2m0-2A5.5 5.5 0 1011 5.5 5.5 5.5 0 005.5 0"/></svg>`;
}
}
customElements.define('svg-2d', Svg2D);
export default Svg2D;