UNPKG

feather-icons-paths

Version:

Feather icons exported as paths

30 lines (27 loc) 1.47 kB
/** @typedef {String} PathifiedSvgContent */ /** @typedef {String} FeatherIconsPathDefinition */ /** @typedef {{ prefix: 'fe', iconName: 'feAlignCenter', icon: [Number|String, Number|String, import('feather-icons').FeatherAttributes, PathifiedSvgContent, FeatherIconsPathDefinition] }} FeatherAlignCenterIconData */ /** @type {FeatherAlignCenterIconData} */ const feAlignCenter = { prefix: 'fe', iconName: 'align-center', icon: [ 24, 24, '<line x1="18" y1="10" x2="6" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="18" y1="18" x2="6" y2="18"></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-align-center"><path d="M18 10 L6 10"/><path d="M21 6 L3 6"/><path d="M21 14 L3 14"/><path d="M18 18 L6 18"/></svg>', 'M18 10 L6 10 M21 6 L3 6 M21 14 L3 14 M18 18 L6 18', '"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 feAlignCenter