@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
28 lines (26 loc) • 2.44 kB
JavaScript
import _mergeJSXProps from '@vue/babel-helper-vue-jsx-merge-props';
import { iconSize, updateContextData } from '@justeattakeaway/pie-icons-configs/configs-vue';
export default {
name: 'IconPaymentBarclays',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--barclays', 'IconPaymentBarclays');
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: '#009ddf',
d: 'M10.859 3.648c-.474-.05-.76 0-.919.03a1.5 1.5 0 0 0-.672.286.9.9 0 0 0-.197.217c.573-.286 1.432.06 1.748.405.376.415.356 1.137.297 1.551-.06.455-.356 1.68-1.739 1.917-.504.089-1.897.04-2.163-1.146.424.06.859-.445.533-.909-.316-.464-1.106-.444-1.66-.296-.681.187-1.244.899-1.491 1.393-.307.622-.524 1.492-.564 2.173-.049.751-.039 1.59.01 2.213.07.78.247 1.58.514 2.272.267.702.583 1.314.919 1.956l.03.06a12.293 12.293 0 0 0 .672-.81c.118-.168.513-.86.622-1.107.523.346.612.583.632.919.02.365-.287 1.175-.77 2.035-.03.05-.07.128-.11.188a11.337 11.337 0 0 0 1.087-1.324c.405-.583.969-1.512 1.275-2.342.415.168.593.406.701.633.148.316.03.998-.395 2.005-.296.702-.711 1.354-1.195 2.035-.06.08-.139.198-.198.267l.148.119c.544.414 1.196.869 1.818 1.234.672.386 1.531.8 2.203.959.672-.158 1.531-.573 2.203-.959.613-.355 1.274-.81 1.818-1.234l.148-.119c-.05-.07-.138-.188-.198-.267-.474-.681-.889-1.333-1.185-2.035-.435-1.008-.553-1.699-.395-2.005.109-.227.286-.455.701-.633.306.83.87 1.759 1.275 2.342.405.573.82 1.037.928 1.156.09.098.129.138.158.168-.03-.07-.079-.139-.108-.188-.484-.86-.79-1.67-.77-2.035.019-.346.108-.573.631-.919.119.247.504.939.623 1.107.118.167.425.533.563.691.05.06.099.109.108.119l.03-.06c.336-.642.652-1.254.919-1.956a9 9 0 0 0 .514-2.272c.049-.622.059-1.462.01-2.213-.04-.681-.257-1.55-.564-2.173-.237-.494-.81-1.196-1.491-1.393-.563-.158-1.344-.178-1.66.296-.326.474.119.978.533.909-.128.593-.671 1.176-1.798 1.176-.523 0-1.225-.297-1.55-.84-.425-.721-.406-1.442-.465-2.055-.04-.336-.06-.682-.168-1.008s-.316-.543-.622-.632a3.6 3.6 0 0 0-.78-.138h-.11c-.236-.01-.385.069-.434.237',
},
})]);
},
};