@justeattakeaway/pie-icons-vue
Version:
Shared PIE Icon Components for Vue.js.
32 lines (29 loc) • 1.22 kB
JavaScript
import _mergeJSXProps from './node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.mjs';
import { iconSize, updateContextData } from './packages/tools/pie-icons-configs/configs-vue.mjs';
var IconPaymentLitecoin = {
name: 'IconPaymentLitecoin',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--litecoin', 'IconPaymentLitecoin');
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: '#A5A8A9',
'fill-rule': 'evenodd',
d: 'M21.175 12a9.175 9.175 0 1 1-18.35 0 9.175 9.175 0 0 1 18.35 0Zm-11.624.67 1.272-4.77h2.756l-.954 3.71 1.272-.53-.318 1.166-1.272.424-.636 2.332h4.559l-.424 1.696H8.49l.742-2.862-1.06.424.318-1.166 1.06-.424Z',
'clip-rule': 'evenodd',
},
})]);
},
};
export { IconPaymentLitecoin as default };