UNPKG

bento-charts

Version:
11 lines (10 loc) 405 B
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;