UNPKG

@ntragas/pouncejstest

Version:

A collection of UI components from Panther labs

14 lines (13 loc) 364 B
import React from 'react'; import { Dayjs } from 'dayjs'; export interface DayProps { day?: number; isLastRow?: boolean; month: number; year: number; daysSelected?: [Dayjs?, Dayjs?]; timezone: 'local' | 'utc'; onDaySelect?: (date: Dayjs) => void; } declare const _default: React.NamedExoticComponent<DayProps>; export default _default;