UNPKG

react-native-lunar-calendars

Version:

React Native Calendar Components with Lunar Calendar Support - Fork of react-native-calendars with Vietnamese lunar calendar functionality

15 lines (14 loc) 319 B
import React from 'react'; interface DayProps { state?: string; theme?: { [key: string]: any; }; onPress?: (date: any) => void; onLongPress?: (date: any) => void; date?: any; marking?: any; children?: React.ReactNode; } declare const Day: React.FC<DayProps>; export default Day;