react-native-plain-calendar
Version:
Calendar component for React-Native
17 lines (16 loc) • 651 B
TypeScript
import * as React from 'react';
import { StyleProp, TextStyle, ViewStyle } from 'react-native';
export interface WeekdayProps {
weekdayStyle?: StyleProp<TextStyle>;
weekdayContainerStyle?: StyleProp<ViewStyle>;
}
interface WeekdayPrivateProps extends WeekdayProps {
currentMonth: Date;
formatedWeekdays: string[];
index: number;
dateFormat: string;
startDate: Date;
}
declare function Weekday({ index, formatedWeekdays, weekdayContainerStyle, weekdayStyle, startDate, dateFormat, }: WeekdayPrivateProps): JSX.Element;
declare const WeekdayMemo: React.MemoExoticComponent<typeof Weekday>;
export { WeekdayMemo as Weekday };