UNPKG

@justeattakeaway/pie-icons-vue

Version:
43 lines (41 loc) 1.32 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconSocialMicrosoftStatic', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--microsoftStatic', 'IconSocialMicrosoftStatic'); 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: { fill: '#00a3ee', d: 'M7.372 14.5H1.5V8.618h5.905z', }, }), h('path', { attrs: { fill: '#ffb700', d: 'M8.595 14.5H14.5V8.618H8.595z', }, }), h('path', { attrs: { fill: '#f15121', d: 'M7.372 7.382H1.5V1.5h5.905z', }, }), h('path', { attrs: { fill: '#7eb801', d: 'M14.5 7.382H8.595V1.5H14.5z', }, })]); }, };