UNPKG

@ntragas/pouncejstest

Version:

A collection of UI components from Panther labs

12 lines (11 loc) 301 B
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;