@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 1.23 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: 'IconUserHighlightLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--userHighlightLarge', 'IconUserHighlightLarge');
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: 'M16.875 9h-1.75V3.75h1.75zM23.7 7.775l-1.4-1.05-2.625 3.5 1.4 1.05zm-11.375 2.45L9.7 6.725l-1.4 1.05 2.625 3.5zM11.188 16A4.813 4.813 0 1 1 16 20.813 4.82 4.82 0 0 1 11.188 16m1.75 0a3.063 3.063 0 1 0 6.125 0 3.063 3.063 0 0 0-6.125 0m11.165 9.879a6.25 6.25 0 0 0-5.924-3.754h-4.375a6.25 6.25 0 0 0-5.924 3.754l-.892 2.371H8.86l.674-1.75a4.5 4.5 0 0 1 4.287-2.625h4.375a4.5 4.5 0 0 1 4.288 2.625l.673 1.75h1.882z',
},
})]);
},
};