UNPKG

react-native-ethiopian-calendar

Version:

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

20 lines (19 loc) 552 B
import React from 'react'; import type { LanguageCode, Mode } from '../../../utils/locals/types'; import type { Theme } from '../../../types'; declare type DayProps = { currentDay: number; today: () => void; prev: () => void; next: () => void; month: number; year: number; locals: LanguageCode; mode: Mode; theme?: Theme; onModeChange?: (mode: Mode) => void; onLanguageChange?: (language: LanguageCode) => void; hideHeaderButtons?: boolean; }; export declare const Header: React.FC<DayProps>; export {};