react-datamaps-india
Version:
Datamaps for india region
13 lines (12 loc) • 355 B
TypeScript
import { MapLayout } from '../..';
interface MapLegendProps {
svgWidth: number;
svgHeight: number;
extremeValues: {
min: number;
max: number;
};
mapLayout: MapLayout;
}
declare const MapLegend: ({ extremeValues: { min, max }, mapLayout, svgWidth, svgHeight, }: MapLegendProps) => JSX.Element;
export default MapLegend;