UNPKG

384 BTypeScriptView Raw
1import React, { type ButtonHTMLAttributes } from "react";
2/**
3 * Render the next month button element in the calendar.
4 *
5 * @group Components
6 * @see https://daypicker.dev/guides/custom-components
7 */
8export declare function NextMonthButton(props: ButtonHTMLAttributes<HTMLButtonElement>): React.JSX.Element;
9export type NextMonthButtonProps = Parameters<typeof NextMonthButton>[0];