UNPKG

@justeattakeaway/pie-icons-vue

Version:
27 lines (25 loc) 1.41 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconUsersLarge', props: { size: iconSize.large, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--usersLarge', 'IconUsersLarge'); 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: 'M10.461 8.563a3.938 3.938 0 1 1 0 7.875 3.938 3.938 0 0 1 0-7.875m0 1.75a2.187 2.187 0 1 0 2.135 2.187 2.17 2.17 0 0 0-2.135-2.187m11.113-1.75A3.937 3.937 0 1 1 17.75 12.5a3.903 3.903 0 0 1 3.824-3.937m0 1.75a2.187 2.187 0 1 0 2.135 2.187 2.16 2.16 0 0 0-2.135-2.187M27.9 20.375a5.25 5.25 0 0 0-4.97-3.036h-3.57A5.77 5.77 0 0 0 16 18.363a5.67 5.67 0 0 0-3.351-1.05H9.105a5.25 5.25 0 0 0-4.979 3.062l-1.251 3.063h1.864l.971-2.415a3.6 3.6 0 0 1 3.395-1.96h3.561a4.2 4.2 0 0 1 2.109.56 4 4 0 0 0-.385.726l-1.242 3.089h1.846L16 21.023a3.61 3.61 0 0 1 3.395-1.96h3.57a3.61 3.61 0 0 1 3.395 1.96l.971 2.415h1.794z', }, })]); }, };