@demark-pro/react-booking-calendar
Version:
A responsive customizable React Booking calendar with overbooking protection
8 lines (7 loc) • 301 B
TypeScript
import { ComponentPropsWithoutRef } from "react";
import { CommonProps } from "../types";
export type WeekContentProps = CommonProps & {
day: number;
innerProps?: Omit<ComponentPropsWithoutRef<"div">, "children">;
};
export declare const WeekContent: (props: WeekContentProps) => JSX.Element;