UNPKG

react-native-ethiopian-calendar-date-picker

Version:

A react native calendar component which is mainly intended for applications which require Ethiopian calendar.

14 lines (13 loc) 328 B
import React from 'react'; import type { Theme } from 'src/types'; declare type DayProps = { dayNumber: number; today?: boolean; extraDays?: boolean; selected?: boolean; onPress?: () => void; theme?: Theme; disabled?: boolean; }; export declare const Day: React.FC<DayProps>; export {};