@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
33 lines (31 loc) • 1.56 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: 'IconLocalHeroFilledLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--localHeroFilledLarge', 'IconLocalHeroFilledLarge');
return h('svg', _mergeJSXProps([{
attrs: {
xmlns: 'http://www.w3.org/2000/svg',
role: 'presentation',
focusable: 'false',
fill: 'currentColor',
viewBox: '0 0 33 32',
},
}, ctx.data]), [h('path', {
attrs: {
d: 'M22.285 22.852c1.749.552 3.041 1.454 3.041 2.766 0 2.406-4.376 3.5-8.448 3.5s-8.448-1.094-8.448-3.5c0-1.312 1.292-2.214 3.04-2.765l1.378 1.435c-1.884.455-2.729 1.068-2.729 1.33 0 .447 2.324 1.75 6.759 1.75 4.435 0 6.758-1.303 6.759-1.75 0-.262-.846-.875-2.73-1.33l1.378-1.436Z',
},
}), h('path', {
attrs: {
'fill-rule': 'evenodd',
d: 'M24.988 2.37a2 2 0 0 1 1.414.586l3.865 3.865a2 2 0 0 1 .101 2.72L18.36 23.47a2 2 0 0 1-3.034-.005L3.383 9.519a2 2 0 0 1 .065-2.674l3.634-3.848c.378-.4.904-.627 1.454-.627h16.452Zm-8.086 3.735a9.714 9.714 0 0 1-5.5 5.5 9.712 9.712 0 0 1 5.5 5.5 9.715 9.715 0 0 1 5.5-5.5 9.715 9.715 0 0 1-5.5-5.5Z',
'clip-rule': 'evenodd',
},
})]);
},
};