UNPKG

vira

Version:

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

43 lines (42 loc) 1.62 kB
import { html } from 'element-vir'; import { viraIconCssVars } from '../../icon-css-vars.js'; import { defineIcon } from '../../icon-svg.js'; /** * A link icon. * * @category Icon * @category SVG * @see https://electrovir.github.io/vira/book/icons/link24icon */ export const Link24Icon = defineIcon({ name: 'Link24Icon', svgTemplate: html ` <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:2" viewBox="0 0 24 24" width="24" height="24" > <path d="M11.6 14.4a4 4 0 0 1-1.5-6.6l4.2-4.2A4 4 0 0 1 20 9.3l-3 2.9" stroke=${viraIconCssVars['vira-icon-stroke-color'].value} stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value} fill=${viraIconCssVars['vira-icon-fill-color'].value} /> <path d="M12.4 9.6c.5.1 1 .5 1.5.9a4 4 0 0 1 0 5.7l-4.2 4.2A4 4 0 0 1 4 14.7l3-2.9" stroke=${viraIconCssVars['vira-icon-stroke-color'].value} stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value} fill=${viraIconCssVars['vira-icon-fill-color'].value} /> <path d="M11.6 14.4a4 4 0 0 1-1.5-6.6l4.2-4.2A4 4 0 0 1 20 9.3l-3 2.9" stroke=${viraIconCssVars['vira-icon-stroke-color'].value} stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value} fill="none" /> </svg> `, });