@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 1.03 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: 'IconFaceNeutralFilled',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--faceNeutralFilled', 'IconFaceNeutralFilled');
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: 'M12.793 3.208A6.79 6.79 0 0 0 8 1.218 6.782 6.782 0 1 0 14.78 8a6.789 6.789 0 0 0-1.989-4.793ZM5.75 6a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5ZM11 10.94H5V9.626h6v1.312Zm-.75-3.44a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Z',
},
})]);
},
};