forked from sagnik/Project_Velocity
10 lines
360 B
TypeScript
10 lines
360 B
TypeScript
import React, { type ButtonHTMLAttributes } from "react";
|
|
/**
|
|
* Render the button elements in the calendar.
|
|
*
|
|
* @private
|
|
* @deprecated Use `PreviousMonthButton` or `@link NextMonthButton` instead.
|
|
*/
|
|
export declare function Button(props: ButtonHTMLAttributes<HTMLButtonElement>): React.JSX.Element;
|
|
export type ButtonProps = Parameters<typeof Button>[0];
|