@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
43 lines (41 loc) • 1.29 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: 'IconSocialMicrosoftLargeStatic',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--microsoftLargeStatic', 'IconSocialMicrosoftLargeStatic');
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: {
fill: '#F15121',
d: 'M4 4h11v11H4V4Z',
},
}), h('path', {
attrs: {
fill: '#00A3EE',
d: 'M4 17h11v11H4V17Z',
},
}), h('path', {
attrs: {
fill: '#7EB801',
d: 'M17 4h11v11H17V4Z',
},
}), h('path', {
attrs: {
fill: '#FFB700',
d: 'M17 17h11v11H17V17Z',
},
})]);
},
};