@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
29 lines (27 loc) • 1.25 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 16m1.75 0c0 5.793 4.708 10.5 10.5 10.5 5.793 0 10.5-4.707 10.5-10.5 0-5.792-4.707-10.5-10.5-10.5-5.792 0-10.5 4.708-10.5 10.5m4.944-.324 3.193 3.527h.018l7.945-8.287 1.26 1.208-8.269 8.627a1.35 1.35 0 0 1-.954.403h-.035a1.32 1.32 0 0 1-.953-.447l-3.5-3.858z',
'clip-rule': 'evenodd',
},
})]);
},
};