vira
Version:
A simple and highly versatile design system using element-vir.
40 lines (39 loc) • 1.45 kB
JavaScript
import { html } from 'element-vir';
import { viraIconCssVars } from '../../icon-css-vars.js';
import { defineIcon } from '../../icon-svg.js';
/**
* A globe icon.
*
* @category Icon
* @category SVG
* @see https://electrovir.github.io/vira/book/icons/globe24icon
*/
export const Globe24Icon = defineIcon({
name: 'Globe24Icon',
svgTemplate: html `
<svg
xmlns="http://www.w3.org/2000/svg"
xml:space="preserve"
width="24"
height="24"
viewBox="0 0 24 24"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:1"
>
<circle
cx="12"
cy="12"
r="9"
fill=${viraIconCssVars['vira-icon-fill-color'].value}
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
/>
<path
d="M21 12c0 5-4 9-9 9m9-9c0-5-4-9-9-9m9 9H3m9 9c-5 0-9-4-9-9m9 9q3.5-3.9 3.6-9 0-5.1-3.6-9m0 18a14 14 0 0 1-3.6-9q0-5.1 3.6-9m-9 9c0-5 4-9 9-9"
style="fill-rule:nonzero;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
fill="none"
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
/>
</svg>
`,
});