@justeattakeaway/pie-icons-vue
Version:
PIE Design System Icon set for Vue
33 lines (30 loc) • 1.19 kB
JavaScript
import _mergeJSXProps from './_virtual/helper.mjs';
import { iconSize, updateContextData } from './packages/tools/pie-icons-configs/configs-vue.mjs';
var IconGeolocationCircle = {
name: 'IconGeolocationCircle',
props: {
size: iconSize.regular,
},
functional: true,
render (h, ctx) {
ctx.data = updateContextData(ctx, 'c-pieIcon c-pieIcon--geolocationCircle', 'IconGeolocationCircle');
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: {
d: 'M8 1.42a6.58 6.58 0 1 0 0 13.16A6.58 6.58 0 0 0 8 1.42m0 11.83a5.25 5.25 0 1 1 0-10.5 5.25 5.25 0 0 1 0 10.5',
},
}), h('path', {
attrs: {
d: 'm4.351 8.28 1.33.332a2.35 2.35 0 0 1 1.75 1.75l.333 1.33h1.172l2.293-6.877L4.35 7.064zm4.769-1.4-.761 2.284A3.65 3.65 0 0 0 6.836 7.64z',
},
})]);
},
};
export { IconGeolocationCircle as default };