bento-charts
Version:
Charts library for Bento-platform
11 lines (10 loc) • 405 B
TypeScript
import type { ControlPosition } from 'leaflet';
export interface MapLegendDiscreteProps {
position: ControlPosition;
minValue: number;
minColor: string;
maxValue: number;
maxColor: string;
}
declare const MapLegendContinuous: ({ position, minValue, minColor, maxValue, maxColor }: MapLegendDiscreteProps) => import("react/jsx-runtime").JSX.Element;
export default MapLegendContinuous;