UNPKG

react-native-easy-calendar

Version:

Customizable, easy-to-use, performant calendar components for React Native

16 lines (15 loc) 460 B
import React from 'react'; import { Dayjs } from 'dayjs'; import type { DateProperties, MonthComponentType } from '../Entities'; export interface Props { MonthComponent?: MonthComponentType; onPressMonth: (date: string) => void; visibleDate: Dayjs; minDate?: string; maxDate?: string; dateProperties: { [date: string]: DateProperties; }; } declare const _default: React.NamedExoticComponent<Props>; export default _default;