UNPKG

@demark-pro/react-booking-calendar

Version:

A responsive customizable React Booking calendar with overbooking protection

10 lines (9 loc) 334 B
/// <reference types="react" /> import { CommonProps } from "../types"; export type MonthArrowBackProps = CommonProps & { innerProps?: { onClick: () => void; }; }; export type MonthArrowDirectionType = "left" | "right" | "up" | "down"; export declare const MonthArrowBack: (props: MonthArrowBackProps) => JSX.Element;