@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
53 lines (51 loc) • 1.66 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: 'IconPaymentEtherium',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--etherium', 'IconPaymentEtherium');
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: '#353535',
d: 'm11.999 5.263-.093.307v8.91l.093.09 4.254-2.445z',
},
}), h('path', {
attrs: {
fill: '#8c8c8c',
d: 'm11.999 5.263-4.254 6.862L12 14.569V5.263',
},
}), h('path', {
attrs: {
fill: '#3d3d3b',
d: 'm11.999 15.352-.053.062v3.174l.053.149 4.256-5.828z',
},
}), h('path', {
attrs: {
fill: '#8c8c8c',
d: 'M11.999 18.737v-3.385L7.745 12.91z',
},
}), h('path', {
attrs: {
fill: '#151515',
d: 'm11.999 14.57 4.254-2.445-4.254-1.88z',
},
}), h('path', {
attrs: {
fill: '#383838',
d: 'M7.745 12.125 12 14.569v-4.324z',
},
})]);
},
};