UNPKG

feather-icons-paths

Version:

Feather icons exported as paths

30 lines (27 loc) 1.5 kB
/** @typedef {String} PathifiedSvgContent */ /** @typedef {String} FeatherIconsPathDefinition */ /** @typedef {{ prefix: 'fe', iconName: 'feMinimize_2', icon: [Number|String, Number|String, import('feather-icons').FeatherAttributes, PathifiedSvgContent, FeatherIconsPathDefinition] }} FeatherMinimize_2IconData */ /** @type {FeatherMinimize_2IconData} */ const feMinimize_2 = { prefix: 'fe', iconName: 'minimize-2', icon: [ 24, 24, '<polyline points="4 14 10 14 10 20"></polyline><polyline points="20 10 14 10 14 4"></polyline><line x1="14" y1="10" x2="21" y2="3"></line><line x1="3" y1="21" x2="10" y2="14"></line>', '<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-minimize-2"><path d="M4 14 L10 14 L10 20"/><path d="M20 10 L14 10 L14 4"/><path d="M14 10 L21 3"/><path d="M3 21 L10 14"/></svg>', 'M4 14 L10 14 L10 20 M20 10 L14 10 L14 4 M14 10 L21 3 M3 21 L10 14', '"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 feMinimize_2