+ and – control options in react leaflet

Is there a way in which I can remove the "+" and "-" symbols from my react-leaftlet map container? This is my mapContainer element: <MapContainer center={[0.0, 0.0]} zoom={2} attributionControl={false} doubleClickZoom={false} boxZoom={false} zoomSnap={0.2}> <TileLayer url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"/> </MapContainer> >Solution : You should be able to use the zoomControl map creation option, which is ported as a prop in… Read More + and – control options in react leaflet