@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
39 lines (37 loc) • 1.96 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: 'IconFoodReadyLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--foodReadyLarge', 'IconFoodReadyLarge');
return h('svg', _mergeJSXProps([{
attrs: {
xmlns: 'http://www.w3.org/2000/svg',
role: 'presentation',
focusable: 'false',
fill: 'currentColor',
viewBox: '0 0 32 32',
},
}, ctx.data]), [h('path', {
attrs: {
d: 'm9.376 13.996 1.374 1.129A7 7 0 0 1 16 12.719v-1.75a8.75 8.75 0 0 0-6.624 3.027',
},
}), h('path', {
attrs: {
d: 'M13.874 21.25c.06-.596.186-1.183.376-1.75H5.938a10.054 10.054 0 0 1 18.585-5.329q.355.103.7.245a8 8 0 0 1 1.863 1.059 11.83 11.83 0 0 0-8.951-7.586c.316-.442.487-.97.49-1.514a2.625 2.625 0 0 0-5.25 0c.003.543.174 1.072.49 1.514A11.83 11.83 0 0 0 4.188 19.5H2.875v5.25H14.25a9 9 0 0 1-.385-1.75h-9.24v-1.75zM16 5.5a.875.875 0 1 1 0 1.75.875.875 0 0 1 0-1.75',
},
}), h('path', {
attrs: {
d: 'm21.285 22.764-1.199-1.19-1.233 1.233 2.432 2.433 4.113-4.121-1.234-1.234z',
},
}), h('path', {
attrs: {
d: 'M28.25 19.675a6.9 6.9 0 0 0-1.794-2.511 6.6 6.6 0 0 0-1.846-1.12 6.5 6.5 0 0 0-2.485-.482 6.54 6.54 0 0 0-4.288 1.602 6.8 6.8 0 0 0-1.855 2.625 6.8 6.8 0 0 0-.393 1.75v.551a6.562 6.562 0 1 0 12.66-2.415m-6.125 7.262a4.82 4.82 0 0 1-4.813-4.812v-.551a4.8 4.8 0 0 1 .552-1.75q.28-.47.647-.875a4.804 4.804 0 0 1 7.158 0q.366.406.647.875c.295.542.483 1.136.551 1.75v.551a4.82 4.82 0 0 1-4.742 4.813',
},
})]);
},
};