@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
29 lines (27 loc) • 1.39 kB
JavaScript
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props';
import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue';
export default {
name: 'IconVegetarian',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--vegetarian', 'IconVegetarian');
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: 'm10.844 1.043.324.57.05.096c.43.798 3.179 5.91 2.33 8.986a5.18 5.18 0 0 1-4.97 3.806 5 5 0 0 1-1.374-.192 5 5 0 0 1-1.059-.42 6.6 6.6 0 0 1-2.992.735A6.4 6.4 0 0 1 2 14.509v-1.334a5.2 5.2 0 0 0 2.938-.179A5.18 5.18 0 0 1 3.625 8c.857-3.23 6.186-6.36 6.629-6.62l.021-.013zm-.367 11.645a3.86 3.86 0 0 0 1.81-2.326v-.008c.552-2.03-.997-5.68-1.942-7.5C8.604 3.94 5.375 6.25 4.859 8.35a3.85 3.85 0 0 0 1.312 4.025 5.16 5.16 0 0 0 2.03-2.984l1.269.359a6.43 6.43 0 0 1-2.048 3.255l.132.052a3.86 3.86 0 0 0 2.923-.37',
'clip-rule': 'evenodd',
},
})]);
},
};