UNPKG

@demark-pro/react-booking-calendar

Version:

A responsive customizable React Booking calendar with overbooking protection

9 lines (8 loc) 345 B
import { ComponentPropsWithoutRef } from "react"; import { CalendarDayState, CommonProps } from "../types"; export type DayReservationProps = CommonProps & { date: Date; state: CalendarDayState; innerProps?: ComponentPropsWithoutRef<"div">; }; export declare const DayReservation: (props: DayReservationProps) => JSX.Element | null;