@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 1.15 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: 'IconFaceExcitedFilledLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--faceExcitedFilledLarge', 'IconFaceExcitedFilledLarge');
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: 'M24.662 7.338A12.25 12.25 0 1 0 7.338 24.662 12.25 12.25 0 0 0 24.662 7.338Zm-14.606 8.637a1.313 1.313 0 1 1 .513-2.576 1.313 1.313 0 0 1-.513 2.576Zm11.162 2.88c0 2.517-2.341 4.565-5.219 4.565-2.877 0-5.217-2.048-5.217-4.565v-.437h10.436v.438Zm1.56-3.438a1.312 1.312 0 1 1-2.181-1.458 1.312 1.312 0 0 1 2.182 1.458Z',
},
})]);
},
};