@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 1.11 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: 'IconNetworkError',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--networkError', 'IconNetworkError');
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: 'M14.554 2.321h-1.838l-.507.517H8.674v3.56l-1.322 1.33V4.904H3.39v6.807l-1.97 1.995h1.847l.525-.525h3.561V9.593l1.322-1.33v4.943h3.946V4.281l1.942-1.96h-.008ZM4.7 6.224h1.33v2.835l-1.33 1.339V6.224Zm1.33 5.644h-.945l.945-.954v.954ZM9.977 4.15h.92l-.92.928V4.15Zm1.322 7.735H9.977V6.933l1.322-1.33v6.282Z',
},
})]);
},
};