@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
35 lines (33 loc) • 1.64 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: 'IconSocialAppleCircle',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--appleCircle', 'IconSocialAppleCircle');
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: 'M8 1.175A6.781 6.781 0 1 0 14.78 8 6.79 6.79 0 0 0 8 1.175m0 12.25A5.468 5.468 0 1 1 8 2.488a5.468 5.468 0 0 1 0 10.937',
},
}), h('path', {
attrs: {
d: 'M10.45 9.33a1.64 1.64 0 0 1-.228-1.916q.13-.16.29-.29c.095-.095.2-.174.305-.27a1.33 1.33 0 0 0-.682-.604 1.94 1.94 0 0 0-1.155-.123q-.24.069-.464.175a.93.93 0 0 1-.927 0 1.75 1.75 0 0 0-2.407.92 2.6 2.6 0 0 0-.2.953 4.54 4.54 0 0 0 1.215 3.159.88.88 0 0 0 .657.367c.214.009.428-.036.62-.131a1.29 1.29 0 0 1 1.313 0 1.024 1.024 0 0 0 1.234-.175c.427-.444.752-.976.954-1.558a.5.5 0 0 1 0-.096 1.27 1.27 0 0 1-.525-.411',
},
}), h('path', {
attrs: {
d: 'M8.28 5.979a1.48 1.48 0 0 0 1.059-.875c.118-.242.163-.512.13-.78h-.157A1.67 1.67 0 0 0 8 5.717c-.053.341-.061.333.28.263',
},
})]);
},
};