diff --git a/package-lock.json b/package-lock.json index babc8306..a83dd2c5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "utopia-ui", - "version": "3.0.82", + "version": "3.0.85", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "utopia-ui", - "version": "3.0.82", + "version": "3.0.85", "license": "GPL-3.0-only", "dependencies": { "@heroicons/react": "^2.0.17", diff --git a/package.json b/package.json index 5c277b88..076bc3bf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "utopia-ui", - "version": "3.0.83", + "version": "3.0.85", "description": "Reuseable React Components to build mapping apps for real life communities and networks", "repository": "https://github.com/utopia-os/utopia-ui", "homepage": "https://utopia-os.org/", diff --git a/src/Utils/MarkerIconFactory.ts b/src/Utils/MarkerIconFactory.ts index 8dfb3cc8..1b1bcf35 100644 --- a/src/Utils/MarkerIconFactory.ts +++ b/src/Utils/MarkerIconFactory.ts @@ -73,6 +73,10 @@ const addIcon = (icon: string) => { return '' case 'steps': return '' + case 'suitcase': + return '' + case 'offer': + return '' default: return '' } diff --git a/src/assets/css/marker-icons.css b/src/assets/css/marker-icons.css index 4c7ce298..836c1ef0 100644 --- a/src/assets/css/marker-icons.css +++ b/src/assets/css/marker-icons.css @@ -122,4 +122,18 @@ top: -34px; left: 4px; width: 24px; +} + +.suitcase-icon { + position: relative; + top: -34px; + left: 4px; + width: 24px; +} + +.offer-icon { + position: relative; + top: -34.5px; + left: 4px; + width: 24px; } \ No newline at end of file