UNPKG

vira

Version:

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

49 lines (48 loc) 1.82 kB
import { html } from 'element-vir'; import { viraIconCssVars } from '../../icon-css-vars.js'; import { defineIcon } from '../../icon-svg.js'; /** * An icon that represents searching on a document or searching for a document. * * @category Icon * @category SVG * @see https://electrovir.github.io/vira/book/icons/documentsearch24icon */ export const DocumentSearch24Icon = defineIcon({ name: 'DocumentSearch24Icon', svgTemplate: html ` <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-miterlimit:100" viewBox="0 0 24 24" width="24" height="24" fill-rule="nonzero" stroke-linecap="butt" stroke-linejoin="round" stroke-miterlimit="2" > <path d="m19 9-6-6H5v18h14z" stroke=${viraIconCssVars['vira-icon-stroke-color'].value} stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value} fill=${viraIconCssVars['vira-icon-fill-color'].value} /> <circle cx="11.7" cy="12.5" r="3.5" stroke=${viraIconCssVars['vira-icon-stroke-color'].value} stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value} fill=${viraIconCssVars['vira-icon-fill-color'].value} /> <path d="m14.2 15 2.5 2.5" stroke=${viraIconCssVars['vira-icon-stroke-color'].value} stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value} fill=${viraIconCssVars['vira-icon-fill-color'].value} /> </svg> `, });