UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 1.13 kB
export class SvgMapInfo 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="M5.862 5.162a1.488 1.488 0 1 1-2.975 0 1.488 1.488 0 0 1 2.975 0ZM12 7c.712 0 1.387.154 2 .422V0h-1.05l-2.278 7.201A4.95 4.95 0 0 1 12 7Zm-4.792 6.349L7 14H0V0h11.463L8.872 8.129C7.739 9.045 7 10.429 7 12c0 .47.086.917.208 1.349Zm-.033-8.187V5.09a2.764 2.764 0 0 0-2.872-2.728 2.764 2.764 0 0 0-2.728 2.8A6.903 6.903 0 0 0 2.8 8.312c.474.877 1 1.724 1.575 2.538 0 0 .963-1.488 1.575-2.537a6.903 6.903 0 0 0 1.225-3.15ZM16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0Zm-4.05-1.85a.469.469 0 0 0 .5.5.655.655 0 0 0 .65-.6l-.002-.032A.46.46 0 0 0 12.6 9.6a.615.615 0 0 0-.65.55Zm1.15 3.45-.15-.2a1 1 0 0 1-.55.3c-.1 0-.1-.05-.05-.3l.35-1.3c.15-.5.1-.8-.15-.8a3.25 3.25 0 0 0-1.65.8l.1.25c.198-.125.42-.21.65-.25.05 0 .05.05 0 .25l-.3 1.2c-.2.7 0 .85.25.85a2.885 2.885 0 0 0 1.5-.8Z"/></svg>`; } } customElements.define('svg-map-info', SvgMapInfo); export default SvgMapInfo;