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
/
EmptyDay
/
index.d.ts
9 lines
(8 loc)
•
261 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Theme
}
from
'../../../../types'
;
type
EmptyDayOfMonthProps
= {
xsSize
:
number
;
theme
?:
Theme
;
cellSize
?:
string
; };
declare
const
EmptyDay
:
(
props
:
EmptyDayOfMonthProps
) =>
import
(
"react/jsx-runtime"
).
JSX
.
Element
;
export
default
EmptyDay
;