@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
45 lines (42 loc) • 1.44 kB
JavaScript
import _mergeJSXProps from './_virtual/helper.mjs';
import { iconSize, updateContextData } from './packages/tools/pie-icons-configs/configs-vue.mjs';
var IconPaymentChase = {
name: 'IconPaymentChase',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--chase', 'IconPaymentChase');
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: '#117aca',
d: 'M9.44 3a.635.635 0 0 0-.635.635v4.456h11.77L15.214 3z',
},
}), h('path', {
attrs: {
fill: '#117aca',
d: 'M21.005 9.439a.633.633 0 0 0-.636-.635h-4.454v11.77l5.088-5.362z',
},
}), h('path', {
attrs: {
fill: '#117aca',
d: 'M14.565 21c.35 0 .635-.285.635-.637V15.91H3.43L8.79 21z',
},
}), h('path', {
attrs: {
fill: '#117aca',
d: 'M3 14.562c0 .351.284.637.637.637H8.09V3.43L3 8.789z',
},
})]);
},
};
export { IconPaymentChase as default };