feather-icons-paths
Version:
Feather icons exported as paths
23 lines (20 loc) • 1.28 kB
JavaScript
/** @typedef {String} PathifiedSvgContent */
/** @typedef {String} FeatherIconsPathDefinition */
/** @typedef {{ prefix: 'fe', iconName: 'feFilter', icon: [Number|String, Number|String, import('feather-icons').FeatherAttributes, PathifiedSvgContent, FeatherIconsPathDefinition] }} FeatherFilterIconData */
/** @type {FeatherFilterIconData} */
var feFilter = {
prefix: 'fe',
iconName: 'filter',
icon: [24, 24, '<polygon points="22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"></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-filter"><path d="M22 3 L2 3 L10 12.46 L10 19 L14 21 L14 12.46 L22 3 Z"/></svg>', 'M22 3 L2 3 L10 12.46 L10 19 L14 21 L14 12.46 L22 3 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 feFilter;
//# sourceMappingURL=filter.js.map