UNPKG

vira

Version:

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

32 lines (31 loc) 986 B
import { html } from 'element-vir'; import { viraIconCssVars } from '../../icon-css-vars.js'; import { defineIcon } from '../../icon-svg.js'; /** * An arrow down icon. * * @category Icon * @category SVG * @see https://electrovir.github.io/vira/book/icons/arrowdown24icon */ export const ArrowDown24Icon = defineIcon({ name: 'ArrowDown24Icon', svgTemplate: html ` <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round" viewBox="0 0 24 24" width="24" height="24" > <path d="M12 5v14m0 0-7-7m7 7 7-7" style="fill-rule:nonzero" fill="none" stroke=${viraIconCssVars['vira-icon-stroke-color'].value} stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value} /> </svg> `, });