@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
48 lines (46 loc) • 1.78 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: 'IconPaymentBankOfScotland',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--bankOfScotland', 'IconPaymentBankOfScotland');
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: '#273879',
d: 'M13.563 7.152a1.61 1.61 0 0 0-1.66-1.611 1.624 1.624 0 0 0 0 3.247 1.61 1.61 0 0 0 1.66-1.636',
},
}), h('path', {
attrs: {
fill: '#273879',
d: 'M13.563 16.846a1.61 1.61 0 0 0-1.66-1.636 1.624 1.624 0 0 0 0 3.248 1.61 1.61 0 0 0 1.66-1.612',
},
}), h('path', {
attrs: {
fill: '#273879',
d: 'M5.747 12a1.61 1.61 0 0 0-1.623-1.624 1.624 1.624 0 0 0 0 3.247 1.61 1.61 0 0 0 1.623-1.624',
},
}), h('path', {
attrs: {
fill: '#273879',
d: 'M21.5 12a1.624 1.624 0 1 0-1.624 1.623 1.61 1.61 0 0 0 1.624-1.624',
},
}), h('path', {
attrs: {
fill: '#273879',
d: 'M19.283 9.127V6.086l-7.27 4.41-7.271-4.434v3.041L9.48 12l-4.847 2.896v3.042l7.27-4.435 7.343 4.435v-3.03L14.4 12.011z',
},
})]);
},
};