@demark-pro/react-booking-calendar
Version:
A responsive customizable React Booking calendar with overbooking protection
11 lines (10 loc) • 348 B
TypeScript
import { ComponentPropsWithoutRef } from "react";
import { CommonProps } from "../types";
export type MonthContentProps = CommonProps & {
month: number;
year: number;
innerProps?: ComponentPropsWithoutRef<"div"> & {
isScrollable?: boolean;
};
};
export declare const MonthContent: (props: MonthContentProps) => JSX.Element;