import type { ControlPosition } from 'leaflet'; import { controlPositionClasses } from './utils'; export interface MapLegendDiscreteProps { position: ControlPosition; minValue: number; minColor: string; maxValue: number; maxColor: string; } const MapLegendContinuous = ({ position, minValue, minColor, maxValue, maxColor }: MapLegendDiscreteProps) => { return (
{maxValue} {minValue}
); }; export default MapLegendContinuous;