@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
39 lines (37 loc) • 1.67 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: 'IconCutleryFilledLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--cutleryFilledLarge', 'IconCutleryFilledLarge');
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: 'm24.391 21.25 2.827.464a67 67 0 0 1-.35 4.804h1.75c.13-1.27.28-2.765.376-5.522.188-4.289.162-8.585-.079-12.871-.157-1.461-.481-2.205-1.12-2.476a1.63 1.63 0 0 0-1.969.647c-.13.184-3.29 4.76-2.773 13.221a1.75 1.75 0 0 0 1.338 1.733',
},
}), h('path', {
attrs: {
d: 'M14.25 5.754h-.166l-1.584.761v6.86c0 2.126 1.829 3.404 3.5 3.745v9.38h1.75v-9.397c1.68-.342 3.5-1.62 3.5-3.754V5.71l-1.75.875v6.79c0 1.496-1.855 2.091-2.625 2.091s-2.625-.595-2.625-2.091z',
},
}), h('path', {
attrs: {
d: 'm17.759 5.693-1.75.84v6.842h1.75z',
},
}), h('path', {
attrs: {
d: 'M5.5 15.886V26.5h1.75V15.886a4.79 4.79 0 0 0 3.185-4.768v-.735c0-2.695-1.82-4.883-4.06-4.883s-4.06 2.188-4.06 4.883v.735A4.79 4.79 0 0 0 5.5 15.886',
},
})]);
},
};