vira
Version:
A simple and highly versatile design system using element-vir.
37 lines (36 loc) • 1.15 kB
JavaScript
import { html } from 'element-vir';
import { viraIconCssVars } from '../../icon-css-vars.js';
import { defineIcon } from '../../icon-svg.js';
/**
* An auto theme icon.
*
* @category Icon
* @category SVG
* @see https://electrovir.github.io/vira/book/icons/autotheme24icon
*/
export const AutoTheme24Icon = defineIcon({
name: 'AutoTheme24Icon',
svgTemplate: html `
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
xml:space="preserve"
style="fill-rule:evenodd;clip-rule:evenodd"
viewBox="0 0 24 24"
>
<path
d="M12 4c4.39 0 8 3.61 8 8s-3.61 8-8 8z"
fill=${viraIconCssVars['vira-icon-stroke-color'].value}
stroke="none"
style="fill-rule:nonzero"
/>
<path
d="M12 4a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm0 0v16"
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
fill="none"
/>
</svg>
`,
});