react-native-calendars
Version:
React Native Calendar Components
9 lines (8 loc) • 343 B
TypeScript
import React from 'react';
import { CalendarListProps } from '../../calendar-list';
export interface WeekCalendarProps extends CalendarListProps {
/** whether to have shadow/elevation for the calendar */
allowShadow?: boolean;
}
declare const WeekCalendar: (props: WeekCalendarProps) => React.JSX.Element;
export default WeekCalendar;