@justeattakeaway/pie-icons-vue
Version:
Shared PIE Icon Components for Vue.js.
37 lines (35 loc) • 3.29 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: 'IconPaymentWebMoney',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--webMoney', 'IconPaymentWebMoney');
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: '#0068A3',
'fill-rule': 'evenodd',
d: 'M8.633 15.003c.115-.06.31-.139.518-.139.476 0 .733.322.733.92 0 .698-.345 1.038-.902 1.038-.203 0-.518-.064-.748-.184v-2.606l.4-.094v1.065ZM8.63 16.5c.123.053.257.06.353.06.284 0 .5-.172.5-.777 0-.474-.177-.627-.434-.627-.154 0-.265.04-.419.123V16.5Zm-4.086-1.587h.026l.522 1.864h.414l.622-2.649h-.449l-.391 1.976H5.26l-.533-1.975h-.342l-.499 1.975H3.86l-.43-1.975H3l.622 2.648h.414l.507-1.864Zm3.284 1.737v-.284c-.21.123-.402.194-.61.194-.395 0-.583-.198-.583-.646h1.251v-.138c0-.609-.295-.912-.775-.912-.575 0-.871.411-.871.979 0 .59.265.979.91.979.276 0 .506-.075.678-.172Zm-.306-.986h-.879c.042-.374.222-.55.457-.55.207 0 .402.157.421.55Zm4.128.552h-.02l-.859-2.088h-.464v2.649h.345v-1.875h.035l.783 1.875h.245l.783-1.92h.035v1.92h.414v-2.649h-.476l-.82 2.088Zm1.72-.373c0-.654.367-.979.874-.979.506 0 .875.325.875.979 0 .639-.35.979-.875.979-.526 0-.875-.34-.875-.98Zm1.346 0c0-.504-.211-.717-.472-.717-.253 0-.472.213-.472.717 0 .512.2.717.472.717.272 0 .472-.205.472-.717Zm1.745-.979a2 2 0 0 0-.978.277v1.636h.4v-1.48c.118-.066.314-.134.467-.134.196 0 .346.053.346.348v1.266h.399v-1.352c0-.385-.173-.56-.634-.56Zm2.579 1.502v.284a1.379 1.379 0 0 1-.68.172c-.644 0-.908-.389-.908-.98 0-.567.295-.978.87-.978.48 0 .776.303.776.912v.138h-1.251c0 .448.188.646.583.646.207 0 .4-.07.61-.194Zm-1.185-.702h.878c-.019-.393-.215-.55-.422-.55-.234 0-.414.176-.456.55ZM21 14.928h-.41l-.438 1.374h-.023l-.491-1.374h-.422l.736 1.867c-.092.277-.253.479-.514.479v.306c.441 0 .675-.27.867-.785L21 14.928Z',
'clip-rule': 'evenodd',
},
}), h('path', {
attrs: {
fill: '#0068A3',
'fill-rule': 'evenodd',
d: 'M11.743 6.3a3.414 3.414 0 0 1 1.683.44l-.31.269-.465-.468-.785.681-.466-.495L9.938 8.01l.937 1.006-.368.315.923 1.008-.366.314 1.32 1.43.783-.702.677.752a3.616 3.616 0 0 1-.443.287 3.408 3.408 0 0 1-1.658.427c-1.853 0-3.363-1.47-3.363-3.273C8.38 7.77 9.89 6.3 11.743 6.3Zm-.613 3.067.8-.701.72.778-.8.701-.72-.778Zm1.368.644-.8.7.72.78.8-.702-.72-.778Zm-1.94-1.974.8-.7.72.778-.8.7-.72-.778Zm2.067-.902-.6.525.54.584.6-.526-.54-.583Zm.466 2.933.6-.526.54.584-.6.526-.54-.584Zm1.127.653-.6.526.54.584.6-.526-.54-.584Zm-.358-2.177.4-.35.36.39-.4.35-.36-.39Zm-.111-1.506-.4.35.36.39.4-.351-.36-.39ZM14.37 9.7l.4-.35.36.388-.4.35-.36-.388Zm-1.193-1.393-.6.526.54.584.6-.526-.54-.584Z',
'clip-rule': 'evenodd',
},
})]);
},
};