// /components/CircleIcon.js // Custom circle icon for draggable markers import L from "leaflet"; import "leaflet/dist/leaflet.css"; const circleIcon = L.divIcon({ className: "custom-div-icon", html: "
", iconSize: [25, 25], iconAnchor: [5, 5], }); export default circleIcon;