UNPKG

react-native-easy-calendar

Version:

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

16 lines (15 loc) 469 B
import React from 'react'; import type { DateProperties } from '../Entities'; interface OtherProps { date: string; onPress: (date: string) => void; isStartOfWeek?: boolean; isEndOfWeek?: boolean; isStartOfMonth?: boolean; isEndOfMonth?: boolean; isExtraDay?: boolean; showExtraDates?: boolean; } export declare type Props = DateProperties & OtherProps; declare const _default: React.NamedExoticComponent<Props>; export default _default;