@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
27 lines (25 loc) • 1.19 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: 'IconLev',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--lev', 'IconLev');
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: 'M2.969 3.844H7.78v8.426H6.47V5.156H4.28c0 2.249-.332 6.781-3.281 6.781v-1.312c1.75 0 1.969-3.841 1.969-6.125zM15 9.899a2.45 2.45 0 0 1-2.695 2.327H9.313V3.809h2.835a2.23 2.23 0 0 1 2.467 2.266 1.96 1.96 0 0 1-1.12 1.75A2.11 2.11 0 0 1 15 9.899m-4.462-2.477h1.47a1.242 1.242 0 0 0 1.373-1.268 1.223 1.223 0 0 0-1.365-1.26H10.53zm3.21 2.398a1.303 1.303 0 0 0-1.47-1.339h-1.75v2.625h1.75A1.293 1.293 0 0 0 13.74 9.82z',
},
})]);
},
};