feather-icons-paths
Version:
Feather icons exported as paths
30 lines (27 loc) • 1.37 kB
JavaScript
/** @typedef {String} PathifiedSvgContent */
/** @typedef {String} FeatherIconsPathDefinition */
/** @typedef {{ prefix: 'fe', iconName: 'feCornerLeftDown', icon: [Number|String, Number|String, import('feather-icons').FeatherAttributes, PathifiedSvgContent, FeatherIconsPathDefinition] }} FeatherCornerLeftDownIconData */
/** @type {FeatherCornerLeftDownIconData} */
const feCornerLeftDown = {
prefix: 'fe',
iconName: 'corner-left-down',
icon: [
24,
24,
'<polyline points="14 15 9 20 4 15"></polyline><path d="M20 4h-7a4 4 0 0 0-4 4v12"></path>',
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-corner-left-down"><path d="M14 15 L9 20 L4 15"/><path d="M20 4h-7a4 4 0 0 0-4 4v12"/></svg>',
'M14 15 L9 20 L4 15 M20 4h-7a4 4 0 0 0-4 4v12',
'"xmlns"="http=//www.w3.org/2000/svg" "width"="24" "height"="24" "fill"="none" "stroke"="currentColor" "stroke-width"=2 "stroke-linecap"="round" "stroke-linejoin"="round"',
{
xmlns: 'http://www.w3.org/2000/svg',
width: 24,
height: 24,
fill: 'none',
stroke: 'currentColor',
'stroke-width': 2,
'stroke-linecap': 'round',
'stroke-linejoin': 'round',
},
],
}
export default feCornerLeftDown