@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 1.38 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: 'IconUsers',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--users', 'IconUsers');
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: 'm1.21 11.824.49-1.391a2.87 2.87 0 0 1 2.021-1.75 2.7 2.7 0 0 1-.481-.368 2.406 2.406 0 1 1 3.395 0 2 2 0 0 1-.324.271 2.9 2.9 0 0 1 1.689.5 2.94 2.94 0 0 1 1.697-.535 2.42 2.42 0 0 1-1.04-1.977 2.406 2.406 0 1 1 4.103 1.75q-.22.21-.481.367a2.85 2.85 0 0 1 2.021 1.75l.49 1.392h-1.391l-.341-.954A1.58 1.58 0 0 0 11.5 9.855H9.75a1.58 1.58 0 0 0-1.523 1.015l-.34.954H6.46l.49-1.391c0-.123.105-.237.157-.35a1.65 1.65 0 0 0-.857-.228H4.5a1.58 1.58 0 0 0-1.523 1.015l-.34.954zm8.75-5.25a1.094 1.094 0 1 0 .324-.77 1.08 1.08 0 0 0-.315.77zm-6.125 0a1.094 1.094 0 1 0 .324-.77 1.09 1.09 0 0 0-.315.77z',
},
})]);
},
};