UNPKG
react-chrono
Version:
latest (3.3.3)
undefined (1.9.3)
3.3.3
3.3.2
3.3.1
3.3.0
3.2.2
3.2.1
3.2.0
3.1.0
3.0.0
2.9.1
2.9.0
2.8.3
2.8.2
2.8.1
2.8.0
2.7.1
2.7.0
2.6.1
2.6.0
2.5.1
2.5.0
2.4.2
2.4.1
2.4.0
2.3.1
2.3.0
2.2.7
2.2.5
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
1.22.0
1.21.4
1.21.3
1.21.2
1.21.1
1.21.0
1.20.0
1.19.2
1.19.1
1.19.0
1.18.0
1.17.2
1.17.1
1.17.0
1.16.2
1.16.1
1.16.0
1.15.3
1.15.2
1.15.1
1.15.0
1.14.0
1.13.3
1.13.2
1.13.1
1.13.0
1.12.5
1.12.4
1.12.3
1.12.2
1.12.1
1.12.0
1.11.0
1.10.1
1.10.0
1.9.4
1.9.3
1.9.2
1.9.1
1.9.0
1.8.6
1.8.5
1.8.4
1.8.3
1.8.2
1.8.1
1.8.0
1.7.8
1.7.7
1.7.6
1.7.5
1.7.4
1.7.3
1.7.2
1.7.1
1.7.0
1.6.1
1.6.0
1.5.0
1.4.2
1.4.1
1.4.0
1.3.3
1.3.2
1.3.1
1.3.0
1.2.8
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.26
1.0.25
1.0.24
1.0.23
1.0.22
1.0.21
1.0.20
1.0.19
1.0.18
1.0.17
1.0.16
1.0.15
1.0.13
1.0.12
1.0.11
A Modern Timeline component for React
github.com/prabhuignoto/react-chrono
prabhuignoto/react-chrono
react-chrono
/
dist
/
models
/
TimelineCardTitleModel.d.ts
13 lines
(12 loc)
•
282 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
Theme
}
from
'./Theme'
;
import
{
ReactNode
}
from
'react'
;
/** * Represents the model for a title element. */
export
interface
TitleModel
{
active
?:
boolean
;
align
?:
'left'
|
'right'
;
classString
?:
string
;
theme
?:
Theme
;
title
?:
string
|
ReactNode
; }