@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 1.4 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: 'IconCloudSuccessLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--cloudSuccessLarge', 'IconCloudSuccessLarge');
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.137 25.625H8.65a6.388 6.388 0 0 1-6.388-6.388A6.309 6.309 0 0 1 6.2 13.375a10.045 10.045 0 0 1 19.819 1.382 5.679 5.679 0 0 1 3.719 5.268 5.61 5.61 0 0 1-5.6 5.6ZM8.65 14.6a4.14 4.14 0 0 0-1.4.227 4.585 4.585 0 0 0-3.246 4.375 4.646 4.646 0 0 0 4.646 4.673h15.487a3.85 3.85 0 0 0 3.85-3.85 3.894 3.894 0 0 0-3.01-3.771l-.673-.158v-.691a8.304 8.304 0 0 0-16.179-2.538c.8-.06 1.603.025 2.371.254l-.525 1.671A4.762 4.762 0 0 0 8.65 14.6Zm6.125 5.775a1.453 1.453 0 0 0 1.05-.455l5.512-5.95-1.286-1.19-5.25 5.687-1.925-2.17-1.312 1.155 2.196 2.468a1.417 1.417 0 0 0 1.041.455h-.026Z',
},
})]);
},
};