UNPKG

@fchh/fcos-suite-map

Version:

This project contains a Map component that can be used to display relevant locations of a Fab City. It is a npm package that contains a React component, which can be embedded into other web projects. It uses Mapbox GL as an interactive mapping framework a

9 lines (8 loc) 264 B
import { SyntheticEvent } from 'react'; interface MinimizeButtonProps { onClick?: (event: SyntheticEvent) => void; isMinimized?: boolean; className?: string; } declare const MinimizeButton: React.FC<MinimizeButtonProps>; export default MinimizeButton;