UNPKG

feather-icons-paths

Version:

Feather icons exported as paths

30 lines (27 loc) 1.35 kB
/** @typedef {String} PathifiedSvgContent */ /** @typedef {String} FeatherIconsPathDefinition */ /** @typedef {{ prefix: 'fe', iconName: 'feRewind', icon: [Number|String, Number|String, import('feather-icons').FeatherAttributes, PathifiedSvgContent, FeatherIconsPathDefinition] }} FeatherRewindIconData */ /** @type {FeatherRewindIconData} */ const feRewind = { prefix: 'fe', iconName: 'rewind', icon: [ 24, 24, '<polygon points="11 19 2 12 11 5 11 19"></polygon><polygon points="22 19 13 12 22 5 22 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-rewind"><path d="M11 19 L2 12 L11 5 L11 19 Z"/><path d="M22 19 L13 12 L22 5 L22 19 Z"/></svg>', 'M11 19 L2 12 L11 5 L11 19 Z M22 19 L13 12 L22 5 L22 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 feRewind