@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 1.24 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: 'IconNetworkErrorLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--networkErrorLarge', 'IconNetworkErrorLarge');
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: 'M27.673 5.526h-2.468l-1.129 1.13h-3.193v3.202l-1.995 1.995V10.53h-5.732v7.062l-1.995 1.995v-5.102h-5.73v10.842l-1.112 1.11h2.467l1.033-1.032h3.334v-3.342l1.995-1.995v5.329h5.73V14.32l1.996-1.995V25.39h5.722V6.655h-.06l1.128-1.129h.009ZM7.18 16.254h2.231v5.101l-2.23 2.231v-7.34.008Zm7.726-3.964h2.232v1.321l-2.232 2.232V12.28v.01Zm2.223 11.375h-2.231v-5.337l2.23-2.232v7.57Zm7.726-15.26v15.251h-2.222V10.584l2.17-2.179h.052Z',
},
})]);
},
};