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
/
components
/
Item
/
index.d.ts
11 lines
(10 loc)
•
289 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Theme
}
from
'../../types'
;
type
ItemProps
= {
theme
:
Theme
;
sx
?:
React
.
CSSProperties
;
className
?:
string
;
dataTestid
?:
string
;
children
?:
React
.
ReactNode
; };
export
declare
const
Item
:
(
props
:
ItemProps
) =>
import
(
"react/jsx-runtime"
).
JSX
.
Element
;
export
{};