@demark-pro/react-booking-calendar
Version:
A responsive customizable React Booking calendar with overbooking protection
11 lines (10 loc) • 386 B
TypeScript
import { ComponentPropsWithoutRef } from "react";
import { CommonProps } from "../types";
export type MonthArrowNextProps = CommonProps & {
month?: number;
year?: number;
innerProps?: Omit<ComponentPropsWithoutRef<"button">, "children" | "onClick"> & {
onClick: () => void;
};
};
export declare const MonthArrowNext: (props: MonthArrowNextProps) => JSX.Element;