UNPKG

@demark-pro/react-booking-calendar

Version:

A responsive customizable React Booking calendar with overbooking protection

12 lines (11 loc) 458 B
import { ComponentPropsWithoutRef } from "react"; import { CommonProps } from "../types"; export type MonthArrowBackProps = CommonProps & { month?: number; year?: number; innerProps?: Omit<ComponentPropsWithoutRef<"button">, "children" | "onClick"> & { onClick: () => void; }; }; export type MonthArrowDirectionType = "left" | "right" | "up" | "down"; export declare const MonthArrowBack: (props: MonthArrowBackProps) => JSX.Element;