@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 1.49 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: 'IconTreeTrace',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--treeTrace', 'IconTreeTrace');
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.631 3.231a2.17 2.17 0 1 0-4.34 0c0 .963.64 1.777 1.514 2.057v.743c0 .744-.735 1.339-1.339 1.339h-2.93c-.473 0-.937.158-1.34.411V5.288a2.162 2.162 0 0 0-.647-4.226c-1.19 0-2.17.97-2.17 2.17 0 .962.639 1.776 1.514 2.056v5.433a2.17 2.17 0 0 0-1.514 2.057 2.17 2.17 0 1 0 4.34 0c0-.963-.639-1.777-1.514-2.057v-.7c0-.691.753-1.338 1.339-1.338h2.931c1.251 0 2.651-1.13 2.651-2.652v-.743A2.17 2.17 0 0 0 13.64 3.23zM4.55 2.374c.472 0 .857.385.857.857a.86.86 0 0 1-.857.858.86.86 0 0 1-.858-.858c0-.472.385-.857.858-.857m0 11.261a.86.86 0 0 1-.858-.857.859.859 0 0 1 1.715 0 .86.86 0 0 1-.857.857m6.912-9.546a.86.86 0 0 1-.857-.858c0-.472.385-.857.857-.857.473 0 .858.385.858.857a.86.86 0 0 1-.858.858',
},
})]);
},
};