UNPKG
timeline-calendar-react
Version:
alpha.1 (0.0.1-alpha.1)
alpha.2 (0.0.1-alpha.2)
alpha.3 (0.0.1-alpha.3)
alpha.4 (0.0.1-alpha.4)
beta.1 (0.0.2-beta.1)
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.2-beta.1
0.0.1-alpha.4
0.0.1-alpha.3
0.0.1-alpha.2
0.0.1-alpha.1
0.0.1-alpha.0
A timeline calendar component for React, built with TypeScript and Vite.
timeline-calendar-react
/
dist
/
src
/
ui
/
Content
/
Body
/
RangeItem
/
index.d.ts
11 lines
(10 loc)
•
296 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
IRange
}
from
'../../../../utils'
;
type
ItemDataProps
= {
dataId
:
string
;
index
:
number
;
range
:
IRange
;
eventLabel
?:
string
;
eventColor
?:
string
; };
declare
const
RangeItem
:
(
props
:
ItemDataProps
) =>
import
(
"react/jsx-runtime"
).
JSX
.
Element
;
export
default
RangeItem
;