import * as L from 'leaflet'; export const icons = { RED: L.divIcon({ className: 'marker-icon marker-icon-red', iconAnchor: [10, 20], iconSize: [20, 20], }), BLUE: L.divIcon({ className: 'marker-icon marker-icon-blue', iconAnchor: [10, 20], iconSize: [20, 20], }), GREEN: L.divIcon({ className: 'marker-icon marker-icon-green', iconAnchor: [10, 20], iconSize: [20, 20], }), YELLOW: L.divIcon({ className: 'marker-icon marker-icon-yellow', iconAnchor: [10, 20], iconSize: [20, 20], }), };