@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
33 lines (31 loc) • 1.41 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: 'IconInstantBankFilled',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--instantBankFilled', 'IconInstantBankFilled');
return h('svg', _mergeJSXProps([{
attrs: {
xmlns: 'http://www.w3.org/2000/svg',
role: 'presentation',
focusable: 'false',
fill: 'currentColor',
viewBox: '0 0 16 16',
},
}, ctx.data]), [h('path', {
attrs: {
'fill-rule': 'evenodd',
d: 'M13.02 7.734 12.045 9.6l-.331.636V6.628H8.63v3.79h2.988l-1.229 2.326-.68 1.306H1.844v-1.237c0-.836.436-1.577 1.089-2.003V6.628H1.538V5.173c0-.653.357-1.237.897-1.49l5.541-2.596 5.541 2.596c.549.262.897.845.897 1.49v1.455H13.02v1.106ZM4.247 6.628v3.79h3.084v-3.79H4.247Z',
'clip-rule': 'evenodd',
},
}), h('path', {
attrs: {
d: 'M13.203 10.2v1.864h1.455l-.548 1.054-.375.715-.113.209-.419.793v-1.839H11.75l.034-.078.096-.183.044-.087.383-.732.061-.113.253-.48.296-.574.104-.2.183-.35Z',
},
})]);
},
};