UNPKG
@ntragas/pouncejstest
Version:
latest (1.0.0)
1.0.0
A collection of UI components from Panther labs
github.com/panther-labs/pounce
panther-labs/pounce
@ntragas/pouncejstest
/
dist
/
esm
/
components
/
DateInput
/
Month.d.ts
12 lines
(11 loc)
•
301 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
React
from
'react'
;
import
{
Dayjs
}
from
'dayjs'
;
export
interface
MonthProps
{
year
:
number
;
month
:
number
;
daysSelected
?: [
Dayjs
?,
Dayjs
?];
onDaySelect
?:
(
date
:
Dayjs
) =>
void
;
timezone
:
'local'
|
'utc'
; }
declare
const
Month
:
React
.
FC
<
MonthProps
>;
export
default
Month
;