Merged in feat/sw-3240-move-staticmap-to-design-system (pull request #2654)

feat(SW-3240): Move StaticMap to design-system

* Move StaticMap to design-system


Approved-by: Joakim Jäderberg
This commit is contained in:
Anton Gunnarsson
2025-08-14 12:22:19 +00:00
parent 876d08a421
commit f04e476a6e
7 changed files with 184 additions and 131 deletions

View File

@@ -1,13 +0,0 @@
import type { Coordinates } from "./coordinates"
export type StaticMapProps = {
city?: string
country?: string
coordinates?: Coordinates
width: number
height: number
zoomLevel?: number
mapType?: "roadmap" | "satellite" | "terrain" | "hybrid"
altText: string
mapId?: string
}