UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 1.26 kB
export class SvgGlobe 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="M14.9 4A8.062 8.062 0 0012 1.1a8.144 8.144 0 00-8 0A8.062 8.062 0 001.1 4a8.144 8.144 0 000 8A8.062 8.062 0 004 14.9a8.144 8.144 0 008 0 8.062 8.062 0 002.9-2.9 7.674 7.674 0 000-8zm-6.41 8.24c-.33-.14-.05-.58-.29-.6a11.797 11.797 0 00-2.13-.6c.04-.84-.9-1.17-1.07-2l-1.1-.8c-1.08-.53-.42-2.06-.93-2.71C1.25 4.8 4.51 2.08 5.4 2.52c.8-.4-.602-.287-.5-.48-.062-.364 1.783-1.023 3.5.1.55-.08.35.69-.2.5-.27.18-.41.64-.9.5-.51 1.15.67.77 1.1 1.23.53-.37.77 1.41.7.4.76-.38-.31-1.37.51-1.43.54-.14 1.12.4 1.49 1.01.23.39-.84.17-1.11.3-.28.14-.79.17-.69.49.32-.23 1.05-.17.4 0h.2c.29.13-.35.37-.4.3-.18.19-.59-.03-.5.3-.72.05-.44.59-.91 1.1-.9-.07-.19.6-.29 1.01-.11.46-.26-.59-.43-.61a1.344 1.344 0 00-1.57.1c-.35.3-.42 1.9.4 1.8a1.026 1.026 0 111.7 1.1c.39-.09.11.64.21.8.34-.28 1.08.15.69.5.77.39.51.51 0 .9.08-.28-.19-.17-.31-.2zm.51 2.6c-.26-.99.5-1.48.3-2.6.21-.22.94-.06 1.2.1 1.95-.14-.49 1.98-1.5 2.5z"/></svg>`; } } customElements.define('svg-globe', SvgGlobe); export default SvgGlobe;