Files
aicyclingcoach-go/node_modules/react-leaflet/lib/ScaleControl.js
2025-09-11 07:45:25 -07:00

6 lines
226 B
JavaScript

import { createControlComponent } from '@react-leaflet/core';
import { Control } from 'leaflet';
export const ScaleControl = createControlComponent(function createScaleControl(props) {
return new Control.Scale(props);
});