UNPKG

360 BTypeScriptView Raw
1import React, { type ButtonHTMLAttributes } from "react";
2/**
3 * Render the button elements in the calendar.
4 *
5 * @private
6 * @deprecated Use `PreviousMonthButton` or `@link NextMonthButton` instead.
7 */
8export declare function Button(props: ButtonHTMLAttributes<HTMLButtonElement>): React.JSX.Element;
9export type ButtonProps = Parameters<typeof Button>[0];