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