@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
35 lines (33 loc) • 2.37 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: 'IconStampcardFilledLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--stampcardFilledLarge', 'IconStampcardFilledLarge');
return h('svg', _mergeJSXProps([{
attrs: {
xmlns: 'http://www.w3.org/2000/svg',
role: 'presentation',
focusable: 'false',
fill: 'currentColor',
viewBox: '0 0 32 32',
},
}, ctx.data]), [h('path', {
attrs: {
d: 'M20.331 17.4c-1.006 0-1.085.936-1.085 1.225s.079 1.225 1.085 1.225 1.085-.936 1.085-1.225-.079-1.225-1.085-1.225',
},
}), h('path', {
attrs: {
d: 'M29.108 15.93a6.17 6.17 0 0 0-1.523-3.57 5.6 5.6 0 0 1-.586-.919 6 6 0 0 1-.254-1.102 6.06 6.06 0 0 0-1.417-3.553l-.105-.105a6.03 6.03 0 0 0-3.5-1.417A6.5 6.5 0 0 1 20.568 5a5.3 5.3 0 0 1-.902-.569 6.16 6.16 0 0 0-3.587-1.54h-.14a6.1 6.1 0 0 0-3.553 1.514 5.5 5.5 0 0 1-.936.595c-.376.123-.761.21-1.102.254a6.06 6.06 0 0 0-3.553 1.417l-.105.105a6.03 6.03 0 0 0-1.417 3.5c-.053.394-.14.788-.263 1.156a5.7 5.7 0 0 1-.569.9 6.16 6.16 0 0 0-1.54 3.588v.149a6.1 6.1 0 0 0 1.514 3.552c.228.29.429.604.595.937.123.376.219.761.254 1.102a6.1 6.1 0 0 0 1.417 3.553l.105.105a6.03 6.03 0 0 0 3.5 1.417q.592.079 1.155.263c.333.166.648.367.893.569a6.16 6.16 0 0 0 3.587 1.54h.15c1.32-.114 2.598-.657 3.552-1.514.288-.228.603-.429.936-.595.376-.123.761-.21 1.102-.254a6.04 6.04 0 0 0 3.553-1.418l.105-.105a6.03 6.03 0 0 0 1.417-3.5q.079-.59.263-1.155c.166-.332.367-.647.569-.9a6.16 6.16 0 0 0 1.54-3.588zM8.746 13.375c0-1.435.884-2.975 2.835-2.975s2.835 1.54 2.835 2.975-.883 2.975-2.835 2.975c-1.95 0-2.835-1.54-2.835-2.975m4.7 7.875h-2.127l7.262-10.5h2.127zm6.894.35c-1.951 0-2.835-1.54-2.835-2.975s.884-2.975 2.835-2.975 2.835 1.54 2.835 2.975-.884 2.975-2.835 2.975',
},
}), h('path', {
attrs: {
d: 'M12.666 13.375c0-.289-.079-1.225-1.085-1.225s-1.085.936-1.085 1.225.079 1.225 1.085 1.225 1.085-.936 1.085-1.225',
},
})]);
},
};