UNPKG

@justeattakeaway/pie-icons-vue

Version:
35 lines (33 loc) 1.48 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconPercentageLarge', props: { size: iconSize.large, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--percentageLarge', 'IconPercentageLarge'); return h('svg', _mergeJSXProps([{ attrs: { xmlns: 'http://www.w3.org/2000/svg', role: 'presentation', focusable: 'false', fill: 'currentColor', viewBox: '0 0 32 32', }, }, ctx.data]), [h('path', { attrs: { d: 'M23 16c-3.001 0-4.375 2.494-4.375 4.813s1.374 4.812 4.375 4.812 4.375-2.494 4.375-4.812C27.375 18.493 26.01 16 23 16m0 7.875c-2.555 0-2.625-2.747-2.625-3.062 0-.316.07-3.063 2.625-3.063s2.625 2.747 2.625 3.063c0 .315-.07 3.062-2.625 3.062', }, }), h('path', { attrs: { d: 'M22.16 6.375 7.766 25.625h2.188l14.394-19.25z', }, }), h('path', { attrs: { d: 'M9 16c3.01 0 4.375-2.494 4.375-4.812 0-2.32-1.365-4.813-4.375-4.813s-4.375 2.494-4.375 4.813S5.999 16 9 16m0-7.875c2.555 0 2.625 2.748 2.625 3.063S11.555 14.25 9 14.25s-2.625-2.748-2.625-3.062c0-.316.07-3.063 2.625-3.063', }, })]); }, };