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