bento-charts
Version:
Charts library for Bento-platform
9 lines (8 loc) • 398 B
TypeScript
import type { ControlPosition } from 'leaflet';
import type { MapDiscreteLegendItem } from '../../../types/mapTypes';
export interface MapLegendDiscreteProps {
position: ControlPosition;
legendItems: MapDiscreteLegendItem[];
}
declare const MapLegendDiscrete: ({ position, legendItems }: MapLegendDiscreteProps) => import("react/jsx-runtime").JSX.Element;
export default MapLegendDiscrete;