@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 461 B
JavaScript
export class SvgLayers 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 4.8L8 .5 0 4.8l8 4.3zm-8 5.8L1.5 7.1 0 7.9l8 4.3 8-4.3-1.5-.8zm0 3l-6.5-3.5-1.5.8 8 4.3 8-4.3-1.5-.8z"/></svg>`;
}
}
customElements.define('svg-layers', SvgLayers);
export default SvgLayers;