UNPKG

@aldiand/react-native-ui-datepicker

Version:
18 lines 773 B
import React from 'react'; import { CalendarThemeProps, IDayObject } from '../types'; export declare const daySize = 46; interface Props extends Omit<IDayObject, 'day'> { isToday: boolean; isSelected: boolean; onSelectDate: (date: string) => void; theme: CalendarThemeProps; height?: number; } declare function EmptyDayPure({ height }: { height?: number; }): React.JSX.Element; export declare const EmptyDay: React.MemoExoticComponent<typeof EmptyDayPure>; declare function Day({ date, text, disabled, isCurrentMonth, isToday, isSelected, inRange, leftCrop, rightCrop, onSelectDate, theme, height, }: Props): React.JSX.Element; declare const _default: React.MemoExoticComponent<typeof Day>; export default _default; //# sourceMappingURL=Day.d.ts.map