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: 'feAlignJustify', icon: [Number|String, Number|String, import('feather-icons').FeatherAttributes, PathifiedSvgContent, FeatherIconsPathDefinition] }} FeatherAlignJustifyIconData */ /** @type {FeatherAlignJustifyIconData} */ const feAlignJustify = { prefix: 'fe', iconName: 'align-justify', icon: [ 24, 24, '<line x1="21" y1="10" x2="3" 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="21" y1="18" x2="3" 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-justify"><path d="M21 10 L3 10"/><path d="M21 6 L3 6"/><path d="M21 14 L3 14"/><path d="M21 18 L3 18"/></svg>', 'M21 10 L3 10 M21 6 L3 6 M21 14 L3 14 M21 18 L3 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 feAlignJustify