UNPKG

react-denmark-map

Version:

Customizable plug-and-play map of Denmark for visual presentation.

11 lines (10 loc) 266 B
import { ReactNode } from 'react'; export type CustomZoomControls = (props: { onZoomIn(): void; onZoomOut(): void; }) => ReactNode; export type ZoompaneProps = { zoomable: boolean; customZoomControls?: CustomZoomControls; children: ReactNode; };