UNPKG

react-gantt-svg

Version:

A React Gantt chart component library

13 lines (12 loc) 298 B
import React from 'react'; import type { BarTask } from '../../types/bar-task'; type ArrowProps = { taskFrom: BarTask; taskTo: BarTask; rowHeight: number; taskHeight: number; arrowIndent: number; rtl: boolean; }; export declare const Arrow: React.FC<ArrowProps>; export {};