UNPKG

@justeattakeaway/pie-icons-vue

Version:
27 lines (25 loc) 1.06 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconChartMarkerLarge', props: { size: iconSize.large, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--chartMarkerLarge', 'IconChartMarkerLarge'); 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: 'M9 22.125h1.75v7H9zm6.125 7h1.75v-12.25h-1.75zm6.125-8.75v8.75H23v-8.75zM21.25 9a2.63 2.63 0 0 1-.989 2.047L16 14.496l-4.261-3.412A2.63 2.63 0 0 1 10.75 9V2.875h10.5zM19.5 4.625h-7V9a.87.87 0 0 0 .332.682L16 12.256l3.168-2.538A.87.87 0 0 0 19.5 9z', }, })]); }, };