@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
31 lines (29 loc) • 1.37 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: 'IconVegetarianFilled',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--vegetarianFilled', 'IconVegetarianFilled');
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: {
d: 'm10.844 1.052.323.569.01.02c.243.436 3.255 5.859 2.38 9.089a5.18 5.18 0 0 1-4.98 3.806 5.3 5.3 0 0 1-1.373-.184 5.4 5.4 0 0 1-1.068-.428l.35-.175.359-.237q.315-.219.604-.472a6.46 6.46 0 0 0 2.02-3.29L8.202 9.4a5.17 5.17 0 0 1-2.047 2.94q-.074.052-.147.11-.093.077-.195.144l-.218.113q-.316.176-.657.298A5.16 5.16 0 0 1 3.625 8c.857-3.222 6.185-6.351 6.628-6.611l.022-.013z',
},
}), h('path', {
attrs: {
d: 'M2 14.518q.58.11 1.17.114a6.5 6.5 0 0 0 2.966-.734 5.3 5.3 0 0 1-1.199-.875A5.15 5.15 0 0 1 2 13.185z',
},
})]);
},
};