@justeattakeaway/pie-icons-vue
Version:
Shared PIE Icon Components for Vue.js.
45 lines (42 loc) • 1.49 kB
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
import { iconSize, updateContextData } from './packages/tools/pie-icons-configs/configs-vue.mjs';
var IconSocialMicrosoftCircleLarge = {
name: 'IconSocialMicrosoftCircleLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--microsoftCircleLarge', 'IconSocialMicrosoftCircleLarge');
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: 'M16 28.25a12.25 12.25 0 1 1 0-24.5 12.25 12.25 0 0 1 0 24.5ZM16 5.5a10.5 10.5 0 1 0 0 21 10.5 10.5 0 0 0 0-21Z',
},
}), h('path', {
attrs: {
d: 'M10 10h5.5v5.5H10V10Z',
},
}), h('path', {
attrs: {
d: 'M10 16.5h5.5V22H10v-5.5Z',
},
}), h('path', {
attrs: {
d: 'M16.5 10H22v5.5h-5.5V10Z',
},
}), h('path', {
attrs: {
d: 'M16.5 16.5H22V22h-5.5v-5.5Z',
},
})]);
},
};
export { IconSocialMicrosoftCircleLarge as default };