@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
35 lines (33 loc) • 1.65 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: 'IconLocalHeroLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--localHeroLarge', 'IconLocalHeroLarge');
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: 'M24.081 2.374a2 2 0 0 1 1.414.586l3.865 3.865a2 2 0 0 1 .101 2.72L17.453 23.473a2 2 0 0 1-3.034-.005L2.476 9.522a2 2 0 0 1 .065-2.674l3.634-3.847a2 2 0 0 1 1.454-.627h16.452ZM3.995 8.22 15.94 22.168 27.945 8.239l-3.864-3.865H7.63L3.995 8.22Z',
},
}), h('path', {
attrs: {
d: 'M24.419 25.622c0 2.406-4.376 3.5-8.449 3.5-4.072 0-8.448-1.094-8.448-3.5 0-1.313 1.293-2.214 3.042-2.765l1.377 1.435c-1.884.455-2.73 1.067-2.73 1.33 0 .446 2.324 1.75 6.76 1.75 4.435 0 6.758-1.304 6.758-1.75 0-.263-.845-.875-2.729-1.33l1.377-1.435c1.75.551 3.042 1.452 3.042 2.765Z',
},
}), h('path', {
attrs: {
d: 'M18.151 13.906a9.712 9.712 0 0 1 3.325-2.175 9.714 9.714 0 0 1-5.5-5.5 9.714 9.714 0 0 1-5.5 5.5 9.713 9.713 0 0 1 5.5 5.5 9.713 9.713 0 0 1 2.175-3.325Z',
},
})]);
},
};