@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
30 lines (27 loc) • 1.04 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 IconPaymentWise = {
name: 'IconPaymentWise',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--wise', 'IconPaymentWise');
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: '#163300',
d: 'M7.877 8.607 3.05 14.274h8.64l.98-2.659H8.961l2.273-2.623v-.07L9.766 6.403h6.611L11.235 20.5h3.498l6.191-17H4.94l2.938 5.107Z',
},
})]);
},
};
export { IconPaymentWise as default };