UNPKG

@itwin/itwinui-icons-elements

Version:

Exports svgs from @itwin/itwinui-icons as custom elements

8 lines 668 B
export class SvgDeveloper 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="M4.9 3.7c-.3-.3-.7-.3-1 0L.2 7.5c-.3.3-.3.7 0 1l3.7 3.8c.3.3.7.3 1 0s.3-.7 0-1L1.7 8l3.2-3.3c.3-.3.3-.7 0-1m10.9 3.8l-3.7-3.8c-.3-.3-.7-.3-1 0s-.3.7 0 1L14.3 8l-3.2 3.3c-.3.3-.3.7 0 1s.7.3 1 0l3.7-3.8c.3-.3.3-.7 0-1M9.7 3.6c-.3-.1-.8 0-.9.4l-2.9 7.5c-.1.4 0 .8.4.9s.8 0 .9-.4l2.9-7.5c.2-.4 0-.8-.4-.9"/></svg>`; } } customElements.define('svg-developer', SvgDeveloper); export default SvgDeveloper;