UNPKG

vira

Version:

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

32 lines (31 loc) 987 B
import { html } from 'element-vir'; import { viraIconCssVars } from '../../icon-css-vars.js'; import { defineIcon } from '../../icon-svg.js'; /** * An arrow left icon. * * @category Icon * @category SVG * @see https://electrovir.github.io/vira/book/icons/arrowleft24icon */ export const ArrowLeft24Icon = defineIcon({ name: 'ArrowLeft24Icon', 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="M19 12H5m0 0 7-7m-7 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> `, });