UNPKG

react-leaflet-custom-corners-control

Version:

Creates a control wrapper around a React element with custom corners.

11 lines (10 loc) 302 B
import L from 'leaflet'; import React from 'react'; interface Props { position: L.ControlPosition; children?: React.ReactNode; container?: React.HTMLAttributes<HTMLDivElement>; prepend?: boolean; } declare const Control: (props: Props) => JSX.Element; export default Control;