@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
31 lines (28 loc) • 1.33 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 IconCheckCircleLarge = {
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',
},
})]);
},
};
export { IconCheckCircleLarge as default };