@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 2.19 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: 'IconWrapLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--wrapLarge', 'IconWrapLarge');
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: 'M29.615 9.542a3.13 3.13 0 0 0-2.328-2.878 3.13 3.13 0 0 0-1.662-3.422 3.24 3.24 0 0 0-3.5.7 3.18 3.18 0 0 0-2.345-1.207 2.8 2.8 0 0 0-2.853 2.082c-.113.35-.21.683-.297 1.024l-13.641 13.3a.87.87 0 0 0-.245.691c.463 6.222 3.5 9.704 8.522 9.81a.88.88 0 0 0 .586-.237L26.23 16.28a2.74 2.74 0 0 0 1.295-.604 2.485 2.485 0 0 0 .595-3.395 3.04 3.04 0 0 0 1.496-2.739M21.6 11.625c.63 0 1.041.122 1.155.306s.061.823-.499 1.75a9.5 9.5 0 0 1-1.496-.875q.49-.578.84-1.181m-1.286-1.234q-.379.691-.875 1.304a6.4 6.4 0 0 1-1.488-2.17c.919-.613 2.24-.753 2.625-.455.193.14.088.656-.262 1.321m-4.13-1.671v3.229c.122 2.73.245 5.556-1.75 7.875a5.72 5.72 0 0 1-4.227 2.266h-.087c-2.231 0-4.261-1.47-5.25-2.319zm-5.25 19.154c-3.868-.228-5.504-3.02-6.125-5.96a9.53 9.53 0 0 0 5.328 1.908h.14a7.4 7.4 0 0 0 5.53-2.878c2.188-2.555 2.267-5.522 2.17-8.234q.463.463.972.875a12.5 12.5 0 0 0 3.298 2.012 10 10 0 0 0 1.532.517zm15.487-16.87a.874.874 0 0 0-.7 1.184.87.87 0 0 0 .324.408c.365.235.63.596.744 1.015a1 1 0 0 1-.43.726c-.34.307-1.224.394-2.467 0 .753-1.347.875-2.467.36-3.325a2.54 2.54 0 0 0-1.908-1.12 2.13 2.13 0 0 0-.692-2.248 3.89 3.89 0 0 0-3.578-.158c.052-.341.113-.682.192-1.015s.193-.744.324-1.129a1.094 1.094 0 0 1 1.102-.875 1.51 1.51 0 0 1 1.357 1.2.875.875 0 0 0 1.6.27s1.042-1.636 2.258-1.11c1.068.472.517 2.24.508 2.257a.876.876 0 0 0 .787 1.146c1.19.061 1.637.77 1.663 1.365s-.341 1.269-1.444 1.409',
},
})]);
},
};