UNPKG

@justeattakeaway/pie-icons-vue

Version:
28 lines (26 loc) 1.4 kB
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props'; import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue'; export default { name: 'IconPaymentWeChat', props: { size: iconSize.regular, }, functional: true, render (h, ctx) { ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--weChat', 'IconPaymentWeChat'); return h('svg', _mergeJSXProps([{ attrs: { xmlns: 'http://www.w3.org/2000/svg', role: 'presentation', focusable: 'false', fill: 'currentColor', viewBox: '0 0 24 24', }, }, ctx.data]), [h('path', { attrs: { fill: '#1AAD19', d: 'M9.867 13.488a.512.512 0 0 1-.242.062.533.533 0 0 1-.469-.29l-.035-.082-1.469-3.396a.308.308 0 0 1-.025-.12c0-.156.12-.282.269-.282a.26.26 0 0 1 .16.056l1.733 1.3a.773.773 0 0 0 .717.086L18.656 7c-1.462-1.814-3.867-3-6.59-3C7.611 4 4 7.171 4 11.084c0 2.134 1.086 4.056 2.787 5.355a.576.576 0 0 1 .197.642l-.363 1.429c-.017.067-.043.137-.043.207 0 .156.12.283.269.283a.294.294 0 0 0 .155-.053l1.766-1.074a.815.815 0 0 1 .428-.131.77.77 0 0 1 .237.038c.824.25 1.713.388 2.633.388 4.455 0 8.067-3.172 8.067-7.084a6.377 6.377 0 0 0-.92-3.283l-9.287 5.652-.059.035Z', }, })]); }, };