UNPKG

@xyflow/react

Version:

React Flow - A highly customizable React library for building node-based editors and interactive flow charts.

13 lines 376 B
import type { HTMLAttributes, ReactNode } from 'react'; import type { EdgeToolbarBaseProps } from '@xyflow/system'; /** * @inline */ export type EdgeToolbarProps = EdgeToolbarBaseProps & HTMLAttributes<HTMLDivElement> & { /** * An edge toolbar must be attached to an edge. */ edgeId: string; children?: ReactNode; }; //# sourceMappingURL=types.d.ts.map