import { CRIME_RATE_COLORS } from "@/app/_utils/const/map"; import { Overlay } from "../overlay"; import { ControlPosition } from "mapbox-gl"; interface MapLegendProps { position?: ControlPosition } export default function MapLegend({ position = "bottom-right" }: MapLegendProps) { return (
Low
Medium
High
) }