UNPKG

@justeattakeaway/pie-icons-vue

Version:
27 lines (25 loc) 1.44 kB
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.704 2.704 0 0 1-.481-.368 2.406 2.406 0 1 1 3.395 0 1.898 1.898 0 0 1-.324.271 2.905 2.905 0 0 1 1.689.5 2.94 2.94 0 0 1 1.697-.535 2.415 2.415 0 0 1-1.04-1.977 2.406 2.406 0 1 1 4.103 1.75c-.146.14-.308.263-.481.367a2.853 2.853 0 0 1 2.021 1.75l.49 1.392h-1.391l-.341-.954A1.584 1.584 0 0 0 11.5 9.855H9.75a1.583 1.583 0 0 0-1.523 1.015l-.34.954H6.46l.49-1.391c0-.123.105-.237.157-.35a1.653 1.653 0 0 0-.857-.228H4.5a1.583 1.583 0 0 0-1.523 1.015l-.34.954H1.21Zm8.75-5.25a1.094 1.094 0 1 0 .324-.77 1.084 1.084 0 0 0-.315.77H9.96Zm-6.125 0a1.094 1.094 0 1 0 .324-.77 1.085 1.085 0 0 0-.315.77h-.009Z', }, })]); }, };