react-native-calendars
Version:
React Native Calendar Components
16 lines (15 loc) • 518 B
TypeScript
import XDate from 'xdate';
import React from 'react';
import { Theme } from '../types';
import { CalendarProps } from '../calendar';
export type CalendarListItemProps = CalendarProps & {
item: any;
calendarWidth?: number;
calendarHeight?: number;
horizontal?: boolean;
theme?: Theme;
scrollToMonth?: (date: XDate) => void;
visible?: boolean;
};
declare const CalendarListItem: React.MemoExoticComponent<(props: CalendarListItemProps) => React.JSX.Element>;
export default CalendarListItem;