UNPKG

react-native-calendars

Version:
9 lines (8 loc) 343 B
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;