UNPKG

react-datamaps-india

Version:
13 lines (12 loc) 355 B
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;