UNPKG

vira

Version:

A simple and highly versatile design system using element-vir.

32 lines (31 loc) 1.06 kB
import { html } from 'element-vir'; import { viraIconCssVars } from '../../icon-css-vars.js'; import { defineIcon } from '../../icon-svg.js'; /** * A magnifying glass icon. * * @category Icon * @category SVG * @see https://electrovir.github.io/vira/book/icons/magnifyingglass24icon */ export const MagnifyingGlass24Icon = defineIcon({ name: 'MagnifyingGlass24Icon', svgTemplate: html ` <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="24" height="24" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round" viewBox="0 0 24 24" > <path d="m20 20-4.9-4.9M10.5 4a6.5 6.5 0 1 1 0 13 6.5 6.5 0 0 1 0-13Z" style="fill-rule:nonzero" fill=${viraIconCssVars['vira-icon-fill-color'].value} stroke=${viraIconCssVars['vira-icon-stroke-color'].value} stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value} /> </svg> `, });