@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
31 lines (29 loc) • 1.42 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: 'IconManagement',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--management', 'IconManagement');
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: 'M13.327 11.76c-.566-1.595-2.143-2.675-3.92-2.675H6.593c-1.777 0-3.354 1.071-3.92 2.674l-.828 2.335H3.23l.68-1.9c.383-1.08 1.463-1.803 2.692-1.803h.209l.906.906-1.124 1.813 1.42 1.42 1.42-1.42-1.124-1.813.906-.906h.21c1.228 0 2.308.723 2.691 1.804l.68 1.899h1.385l-.828-2.335h-.026Z',
},
}), h('path', {
attrs: {
d: 'M7.996 7.996a3.052 3.052 0 0 0 3.049-3.05 3.052 3.052 0 0 0-3.05-3.049 3.053 3.053 0 0 0-3.049 3.05 3.053 3.053 0 0 0 3.05 3.049Zm0-4.792c.958 0 1.742.784 1.742 1.743 0 .958-.784 1.742-1.742 1.742a1.748 1.748 0 0 1-1.743-1.742c0-.959.784-1.743 1.743-1.743Z',
},
})]);
},
};