@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
35 lines (33 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: 'IconMapLarge',
props: {
size: iconSize.large,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--mapLarge', 'IconMapLarge');
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: 'm16.691 23.691-3.132.788V8.71l4.76-1.19v7.928a6.45 6.45 0 0 1 1.75-1.033V7.53l4.69 1.181v5.635c.63.228 1.216.543 1.75.954V8.598a1.6 1.6 0 0 0-1.208-1.55l-6.107-1.54-6.501 1.628-5.198-1.338a1.608 1.608 0 0 0-1.374.28 1.583 1.583 0 0 0-.621 1.26V23.41a1.6 1.6 0 0 0 1.199 1.549l5.994 1.54 5.144-1.286a6.548 6.548 0 0 1-1.128-1.523h-.018Zm-4.882.779L7.24 23.298V7.53l4.568 1.173V24.47Z',
},
}), h('path', {
attrs: {
d: 'm22.519 27.436-3.439-3.439a4.864 4.864 0 1 1 6.878 0l-3.44 3.44Zm0-9.983a3.11 3.11 0 0 0-2.196 5.311l2.196 2.196 2.196-2.196a3.11 3.11 0 0 0-2.196-5.311Z',
},
}), h('path', {
attrs: {
d: 'M22.519 21.749a1.277 1.277 0 1 0 0-2.555 1.277 1.277 0 0 0 0 2.555Z',
},
})]);
},
};