import type { ControlPosition } from 'leaflet'; import type { MapDiscreteLegendItem } from '../../../types/mapTypes'; import { controlPositionClasses } from './utils'; export interface MapLegendDiscreteProps { position: ControlPosition; legendItems: MapDiscreteLegendItem[]; } const MapLegendDiscrete = ({ position, legendItems }: MapLegendDiscreteProps) => { return (
); }; export default MapLegendDiscrete;