@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
39 lines (37 loc) • 1.89 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: 'IconPeanuts',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--peanuts', 'IconPeanuts');
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.345 4.5a.438.438 0 1 0 0-.875.438.438 0 0 0 0 .875Z',
},
}), h('path', {
attrs: {
d: 'M11.063 6.25a.438.438 0 1 0 0-.875.438.438 0 0 0 0 .875Z',
},
}), h('path', {
attrs: {
d: 'M9.313 6.127a.437.437 0 1 0 0-.875.437.437 0 0 0 0 .875Z',
},
}), h('path', {
attrs: {
d: 'M5.585 14.781h-.499a4.375 4.375 0 0 1-3.21-2.091A4.323 4.323 0 0 1 1.945 8a4.375 4.375 0 0 1 2.73-1.829A2.161 2.161 0 0 0 6.31 4.57c.035-.164.082-.325.14-.481a4.279 4.279 0 0 1 7.473-1.155 4.375 4.375 0 0 1 .411 4.558 3.719 3.719 0 0 1-1.33 1.523 4.996 4.996 0 0 1-1.566.682A2.424 2.424 0 0 0 9.75 11.5a4.375 4.375 0 0 1-4.2 3.246l.035.035Zm4.891-12.25a2.824 2.824 0 0 0-.463 0 3.01 3.01 0 0 0-2.424 2.31 3.5 3.5 0 0 1-2.625 2.625 3.027 3.027 0 0 0-2.437 2.905 3.01 3.01 0 0 0 .442 1.628 3.045 3.045 0 0 0 4.76.577c.378-.377.647-.848.779-1.365a3.71 3.71 0 0 1 2.625-2.791 3.745 3.745 0 0 0 1.163-.508 2.45 2.45 0 0 0 .875-.971 3.08 3.08 0 0 0-.27-3.22 3.01 3.01 0 0 0-2.425-1.19Z',
},
})]);
},
};