feather-icons-paths
Version:
Feather icons exported as paths
23 lines (20 loc) • 1.18 kB
JavaScript
/** @typedef {String} PathifiedSvgContent */
/** @typedef {String} FeatherIconsPathDefinition */
/** @typedef {{ prefix: 'fe', iconName: 'feCheck', icon: [Number|String, Number|String, import('feather-icons').FeatherAttributes, PathifiedSvgContent, FeatherIconsPathDefinition] }} FeatherCheckIconData */
/** @type {FeatherCheckIconData} */
var feCheck = {
prefix: 'fe',
iconName: 'check',
icon: [24, 24, '<polyline points="20 6 9 17 4 12"></polyline>', '<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-check"><path d="M20 6 L9 17 L4 12"/></svg>', 'M20 6 L9 17 L4 12', '"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 feCheck;
//# sourceMappingURL=check.js.map