UNPKG

@justeattakeaway/pie-icons-vue

Version:
31 lines (29 loc) 1.29 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconUserMove', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--userMove', 'IconUserMove'); 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: 'M6.546 7.125a3.063 3.063 0 1 0 0-6.125 3.063 3.063 0 0 0 0 6.125Zm0-4.813a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5Zm2.861 7.674a2.826 2.826 0 0 0-1.557-.455H5.225a2.555 2.555 0 0 0-2.45 1.566l-.455 1.278H.92l.639-1.75a3.868 3.868 0 0 1 3.683-2.406h2.625a4.183 4.183 0 0 1 2.267.656l-.727 1.111Z', }, }), h('path', { attrs: { d: 'M14.667 11.759 12.91 10l-.875.875.918.919H8.805v1.233h4.147l-.918.92.875.874 1.758-1.758a.92.92 0 0 0 0-1.287v-.017Z', }, })]); }, };