UNPKG

@justeattakeaway/pie-icons-vue

Version:
31 lines (29 loc) 1.34 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconUserMoveLarge', props: { size: iconSize.large, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--userMoveLarge', 'IconUserMoveLarge'); 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: 'M12.505 14.688a4.812 4.812 0 1 0-4.813-4.813 4.821 4.821 0 0 0 4.813 4.813Zm0-7.876a3.062 3.062 0 1 1 0 6.125 3.062 3.062 0 0 1 0-6.124Zm7.358 11.612-1.39 1.076a4.734 4.734 0 0 0-3.79-1.75h-4.375a4.497 4.497 0 0 0-4.287 2.625l-.674 1.75H3.492l.875-2.371A6.247 6.247 0 0 1 10.326 16H14.7a6.536 6.536 0 0 1 5.162 2.424Z', }, }), h('path', { attrs: { d: 'm26.823 22.352-2.502-2.502-1.234 1.234 1.304 1.303h-5.889v1.75h5.889l-1.304 1.304 1.234 1.234 2.502-2.503a1.294 1.294 0 0 0 0-1.82Z', }, })]); }, };