@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 2.69 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: 'IconPrepareLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--prepareLarge', 'IconPrepareLarge');
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: 'M23.263 24.553a3.53 3.53 0 0 0 1.12-2.582c0-.42-.079-.901-.245-1.426a2.2 2.2 0 0 0-1.12-1.312 2.27 2.27 0 0 0-1.243-.22c.21-.498.7-.708.832-.752l-.272-.831-.262-.831a3.23 3.23 0 0 0-1.785 1.487 3.89 3.89 0 0 0-2.214-1.968c.56-.324 1.129-.665 1.715-1.05.656-.403 1.207-1.26.875-2.197-.175-.49-.849-2.213-1.286-3.334 2.45-1.26 3.841-1.872 5.084-2.406L23.587 5.6c-1.34.577-2.897 1.269-5.714 2.747-4.909 2.564-8.619 4.726-11.673 6.808l-.07.053c-1.286.944-1.82 1.688-1.724 2.432.132.91.91 1.409 1.61 1.496.202.044.928.158 2.065.131 0 .07-.017.14-.026.21-.105 1.715.534 3.448 1.733 4.743.105.114.219.219.332.324H4.625l.446 1.75H26.93l.446-1.742zm-14.77-7.07c-1.365.087-2.144-.062-2.162-.062l-.087-.017c.14-.158.402-.42.927-.805 2.818-1.925 6.213-3.92 10.64-6.248.447 1.129 1.042 2.66 1.208 3.071a.6.6 0 0 1-.166.175 27.7 27.7 0 0 1-4.095 2.258c-.044-.035-.096-.053-.131-.088l-.963-.796c-.971-.805-2.362-.822-3.307-.035A6.4 6.4 0 0 0 8.5 17.5zm4.97 5.416-.105 1.505a4.8 4.8 0 0 1-2.293-1.374c-.883-.945-1.347-2.205-1.269-3.448q.014-.236.053-.472a4.7 4.7 0 0 1 .787-1.925c.237-.341.517-.656.84-.919a.78.78 0 0 1 .49-.175c.202 0 .412.07.578.21l.332.272.604.498c.35.315.779.551 1.225.691.009 0 .027.01.035.018h.035l.14.052c.49.15.823.595.823 1.112a.52.52 0 0 1-.228.428 4.58 4.58 0 0 0-2.038 3.518zm5.145-3.649a2.15 2.15 0 0 0-1.111 1.313c-.158.516-.237.988-.237 1.4 0 .498.105.98.289 1.408a4.7 4.7 0 0 1-2.441 1.129l.105-1.479a2.85 2.85 0 0 1 1.269-2.187 2.25 2.25 0 0 0 1.006-1.881c0-.456-.105-.893-.289-1.278a2.14 2.14 0 0 1 1.627 1.383c.01.035.018.06.027.096-.079.026-.158.052-.228.096zm2.214 4.532a1.8 1.8 0 0 1-1.042-.332 1.82 1.82 0 0 1-.779-1.488c0-.236.053-.542.158-.883a.5.5 0 0 1 .228-.271.44.44 0 0 1 .218-.053c.053 0 .105 0 .158.026.42.149.717.219.962.228h.079c.158-.026.42-.026 1.041-.254a.46.46 0 0 1 .377.026.5.5 0 0 1 .236.271c.105.35.166.657.166.902 0 1.006-.814 1.82-1.82 1.82z',
},
})]);
},
};