@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
35 lines (32 loc) • 1.26 kB
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
import { iconSize, updateContextData } from './packages/tools/pie-icons-configs/configs-vue.mjs';
var IconPaymentCashplus = {
name: 'IconPaymentCashplus',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--cashplus', 'IconPaymentCashplus');
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: '#001920',
d: 'M3 12a9 9 0 1 0 18 0 9 9 0 0 0-18 0Z',
},
}), h('path', {
attrs: {
fill: '#80DAFF',
d: 'M12.582 17.162c.345-2.86 1.933-4.5 4.712-5.056v-1.059c-1.562-.238-3.097-.106-4.659.238V6.838h-1.217c-.345 2.833-1.906 4.5-4.686 5.056v1.059c1.562.238 3.097.106 4.66-.238v4.447h1.19Z',
},
})]);
},
};
export { IconPaymentCashplus as default };