@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 1.35 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: 'IconUserPartnership',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--userPartnership', 'IconUserPartnership');
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.865 7.597a2.424 2.424 0 1 0-2.091-.13 3.1 3.1 0 0 0-1.829 1.408L8 10.292l-.936-1.417a3.13 3.13 0 0 0-1.838-1.374 2.389 2.389 0 1 0-2.091.131 3.09 3.09 0 0 0-1.916 2.81v3.683H2.53V10.44a1.81 1.81 0 0 1 1.838-1.75 1.85 1.85 0 0 1 1.584.875L8 12.707l2.047-3.176a1.85 1.85 0 0 1 1.584-.875 1.81 1.81 0 0 1 1.838 1.75v3.719h1.312V10.44a3.09 3.09 0 0 0-1.916-2.844M4.063 4.281a1.094 1.094 0 1 1 0 2.188 1.094 1.094 0 0 1 0-2.188m7.875 0a1.094 1.094 0 1 1 0 2.188 1.094 1.094 0 0 1 0-2.188M4.718 11.5h1.313v2.625H4.72zm5.25 0h1.313v2.625H9.97z',
},
})]);
},
};