UNPKG

react-native-ethiopian-calendar

Version:

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

13 lines (12 loc) 291 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; }; export declare const Day: React.FC<DayProps>; export {};