@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 1.41 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: 'IconWalking',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--walking', 'IconWalking');
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: 'M12.646 7.125A4.09 4.09 0 0 1 9.89 4.938l-.14-.377h-.245a2.083 2.083 0 1 0-3.255.184A5.18 5.18 0 0 0 2.934 7.44L2.286 8.7l1.164.595L4.106 8a3.84 3.84 0 0 1 1.645-1.654v2.53a2.76 2.76 0 0 0 1.094 2.178 7 7 0 0 1-.788.42l-2.826 1.304.56 1.18 2.8-1.32a5.6 5.6 0 0 0 1.365-.875l1.138.77 1.146 2.686 1.207-.516-1.216-2.862a.67.67 0 0 0-.236-.28l-1.12-.717q.258-.375.429-.796c.133-.328.219-.672.253-1.024l.193-2.03a5.3 5.3 0 0 0 2.546 1.426l.639.184.35-1.269zM7.79 2.61a.77.77 0 1 1 0 1.54.77.77 0 0 1 0-1.54m-.088 7.438a1.46 1.46 0 0 1-.638-1.173V5.91q.266-.02.533 0h.972l-.307 2.966a2.6 2.6 0 0 1-.166.665q-.12.287-.297.543z',
},
})]);
},
};