@justeattakeaway/pie-icons-vue
Version:
Shared PIE Icon Components for Vue.js.
29 lines (27 loc) • 1.24 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: 'IconCheckCircleLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--checkCircleLarge', 'IconCheckCircleLarge');
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-rule': 'evenodd',
d: 'M3.75 16C3.75 9.245 9.245 3.75 16 3.75S28.25 9.245 28.25 16 22.755 28.25 16 28.25 3.75 22.755 3.75 16Zm1.75 0c0 5.793 4.707 10.5 10.5 10.5S26.5 21.793 26.5 16 21.793 5.5 16 5.5 5.5 10.207 5.5 16Zm4.944-.324 3.193 3.527h.018l7.945-8.287 1.26 1.208-8.269 8.627a1.353 1.353 0 0 1-.954.403h-.035a1.315 1.315 0 0 1-.953-.447l-3.5-3.858 1.295-1.173Z',
'clip-rule': 'evenodd',
},
})]);
},
};