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