UNPKG
react-gantt-svg
Version:
latest (1.1.5)
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.0.2
1.0.1
1.0.0
0.1.1
0.1.0
A React Gantt chart component library
github.com/ok-jose/react-gantt
ok-jose/react-gantt
react-gantt-svg
/
dist
/
components
/
other
/
arrow.d.ts
13 lines
(12 loc)
•
298 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
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
{};