UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 951 B
export class SvgFunction 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.2 10.238c-.939-.013-.755 1.245-1.1.9a5.4 5.4 0 01-1.2-3.4c0-.43.85-1.635 1.6-1.4.471.147 1.5-.135 1.5-.9 0-1.009-.7-1-1-1a2.513 2.513 0 00-1.4.6 4.74 4.74 0 00-1 1 1.037 1.037 0 00-1.1-1.2l-4.1.1s.202-2.188 1.2-2.7a1.541 1.541 0 011.505.11c1.23.554 2.347-1.75-.505-2.01-2.4-.22-3.535 1.578-4.2 4.6H3.7l-.4 1.5H5s-1.191 5.743-1.922 6.667c-.431.546-1.978.133-1.978.133a.978.978 0 00-1.1 1c0 .3.065 1.1 1.4 1.1 3.516 0 4.124-2.53 4.6-4.6l1-4.3h3.835l.165 1.7s-1.6 2.1-1.7 2.2a1.075 1.075 0 00-1.4-.2 1.06 1.06 0 00-.1 1.5s1.67 1.4 3.6-1.7c.3.7.755 2.7 2.8 2.7 2.183 0 2.137-2.384 1-2.4z"/></svg>`; } } customElements.define('svg-function', SvgFunction); export default SvgFunction;