feather-icons-paths
Version:
Feather icons exported as paths
30 lines (27 loc) • 1.38 kB
JavaScript
/** @typedef {String} PathifiedSvgContent */
/** @typedef {String} FeatherIconsPathDefinition */
/** @typedef {{ prefix: 'fe', iconName: 'feFastForward', icon: [Number|String, Number|String, import('feather-icons').FeatherAttributes, PathifiedSvgContent, FeatherIconsPathDefinition] }} FeatherFastForwardIconData */
/** @type {FeatherFastForwardIconData} */
const feFastForward = {
prefix: 'fe',
iconName: 'fast-forward',
icon: [
24,
24,
'<polygon points="13 19 22 12 13 5 13 19"></polygon><polygon points="2 19 11 12 2 5 2 19"></polygon>',
'<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-fast-forward"><path d="M13 19 L22 12 L13 5 L13 19 Z"/><path d="M2 19 L11 12 L2 5 L2 19 Z"/></svg>',
'M13 19 L22 12 L13 5 L13 19 Z M2 19 L11 12 L2 5 L2 19 Z',
'"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 feFastForward