feather-icons-paths
Version:
Feather icons exported as paths
30 lines (27 loc) • 1.36 kB
JavaScript
/** @typedef {String} PathifiedSvgContent */
/** @typedef {String} FeatherIconsPathDefinition */
/** @typedef {{ prefix: 'fe', iconName: 'feCornerDownLeft', icon: [Number|String, Number|String, import('feather-icons').FeatherAttributes, PathifiedSvgContent, FeatherIconsPathDefinition] }} FeatherCornerDownLeftIconData */
/** @type {FeatherCornerDownLeftIconData} */
const feCornerDownLeft = {
prefix: 'fe',
iconName: 'corner-down-left',
icon: [
24,
24,
'<polyline points="9 10 4 15 9 20"></polyline><path d="M20 4v7a4 4 0 0 1-4 4H4"></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-down-left"><path d="M9 10 L4 15 L9 20"/><path d="M20 4v7a4 4 0 0 1-4 4H4"/></svg>',
'M9 10 L4 15 L9 20 M20 4v7a4 4 0 0 1-4 4H4',
'"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 feCornerDownLeft