UNPKG

moppium-react-flow-renderer

Version:

[![react-flow](https://user-images.githubusercontent.com/2857535/95224198-b2540000-07fa-11eb-832d-361d72d60345.jpg)](https://reactflow.dev)

17 lines (16 loc) 628 B
import React from 'react'; import './style.css'; export interface ControlProps extends React.HTMLAttributes<HTMLDivElement> { showZoom?: boolean; showFitView?: boolean; showInteractive?: boolean; onZoomIn?: () => void; onZoomOut?: () => void; onFitView?: () => void; onInteractiveChange?: (interactiveStatus: boolean) => void; } declare const _default: React.MemoExoticComponent<{ ({ style, showZoom, showFitView, showInteractive, onZoomIn, onZoomOut, onFitView, onInteractiveChange, className, }: ControlProps): JSX.Element; displayName: string; }>; export default _default;