UNPKG

bme-calendar

Version:

Developed for [Book My Event](https://evently-book.vercel.app/).

13 lines (12 loc) 532 B
import { DaySizes } from 'src/helpers/getDaySize'; import { Day, Month } from '../../types/types'; interface CalendarBodyBody { finalDaysArray: Month | undefined; selectedDay: string | undefined; secondDay: string | undefined; setUpSelectedDay: (dayItem: Day) => void; range: string[] | undefined; daySizes: DaySizes; } export declare function CalendarBody({ finalDaysArray, selectedDay, secondDay, setUpSelectedDay, range, daySizes, }: CalendarBodyBody): import("react/jsx-runtime").JSX.Element; export {};