@justeattakeaway/pie-icons-vue
Version:
Shared PIE Icon Components for Vue.js.
29 lines (26 loc) • 1.56 kB
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
import { iconSize, updateContextData } from './packages/tools/pie-icons-configs/configs-vue.mjs';
var IconWalking = {
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.086 4.086 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.841 3.841 0 0 1 1.645-1.654v2.53a2.757 2.757 0 0 0 1.094 2.178 6.61 6.61 0 0 1-.788.42l-2.826 1.304.56 1.18 2.8-1.32a5.576 5.576 0 0 0 1.365-.875l1.138.77 1.146 2.686 1.207-.516-1.216-2.862a.665.665 0 0 0-.236-.28l-1.12-.717c.172-.249.315-.516.429-.796.133-.328.219-.672.253-1.024l.193-2.03a5.311 5.311 0 0 0 2.546 1.426l.639.184.35-1.269-.639-.21ZM7.79 2.61a.77.77 0 1 1 0 1.54.77.77 0 0 1 0-1.54Zm-.088 7.438a1.462 1.462 0 0 1-.638-1.173V5.91c.177-.013.356-.013.533 0h.972l-.307 2.966a2.625 2.625 0 0 1-.166.665c-.08.19-.18.373-.297.543l-.097-.035Z',
},
})]);
},
};
export { IconWalking as default };