UNPKG

@justeattakeaway/pie-icons-vue

Version:
29 lines (27 loc) 1.25 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconFire', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--fire', 'IconFire'); return h('svg', _mergeJSXProps([{ attrs: { xmlns: 'http://www.w3.org/2000/svg', role: 'presentation', focusable: 'false', fill: 'currentColor', viewBox: '0 0 16 16', }, }, ctx.data]), [h('path', { attrs: { 'fill-rule': 'evenodd', d: 'M8.24 2.56 5.082 5.72l-.002.002a4.477 4.477 0 0 0-.004 6.302 4.364 4.364 0 0 0 6.278.002 4.46 4.46 0 0 0-.003-6.304zm-2.518 8.833-.11.107.109-.108zm.666-.194a2.864 2.864 0 0 0 3.669-.013 257 257 0 0 0-1.833-1.817zm4.366.24.064.061-.062-.062zm.197-1.481a256 256 0 0 0-2.208-2.18l-.53-.516-2.722 2.713a2.98 2.98 0 0 1 .652-3.196L8.233 4.69l2.05 2.086.006.005a2.96 2.96 0 0 1 .663 3.177', 'clip-rule': 'evenodd', }, })]); }, };