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
/
Sidebar
/
Head
/
index.d.ts
10 lines
(9 loc)
•
284 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Theme
}
from
'../../../types'
;
type
HeadSidebarProps
= {
theme
?:
Theme
;
onToggle
:
() =>
void
;
accentColor
:
string
;
opened
:
boolean
; };
declare
function
HeadSidebar
(
props
:
HeadSidebarProps
):
import
(
"react/jsx-runtime"
).
JSX
.
Element
;
export
default
HeadSidebar
;