react-jsx-highmaps
Version:
Highmaps built using React components
20 lines (16 loc) • 422 B
JavaScript
import * as React from 'react';
import MapNavigationButton from './MapNavigationButton';
const DEFAULT_ONCLICK = function () {
this.mapZoom(2);
};
const MapNavigationZoomOut = ({
children = '-',
onClick = DEFAULT_ONCLICK,
y = 28,
...restProps
}) => (
<MapNavigationButton type="zoomOut" onClick={onClick} y={y} {...restProps}>
{children}
</MapNavigationButton>
);
export default MapNavigationZoomOut;