@demark-pro/react-booking-calendar
Version:
A responsive customizable React Booking calendar with overbooking protection
9 lines (8 loc) • 339 B
TypeScript
import { ComponentPropsWithoutRef } from "react";
import { CalendarDayState, CommonProps } from "../types";
export type DaySelectionProps = CommonProps & {
date: Date;
state: CalendarDayState;
innerProps?: ComponentPropsWithoutRef<"div">;
};
export declare const DaySelection: (props: DaySelectionProps) => JSX.Element | null;