| 2 | import { Loader2 } from "lucide-react"; |
| 3 | |
| 4 | export interface Building { |
| 5 | id: number; |
| 6 | tags: { [key: string]: string | undefined }; |
| 7 | geometry?: { lat: number; lng: number }[]; |
| 8 | } |
| 9 | |
| 10 | const spinAnimation = keyframes` |
| 11 | from { transform: rotate(0deg); } |
nothing calls this directly
no outgoing calls
no test coverage detected