File size: 370 Bytes
cf86710 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import React, { type ButtonHTMLAttributes } from "react";
/**
* Render the button elements in the calendar.
*
* @private
* @deprecated Use `PreviousMonthButton` or `@link NextMonthButton` instead.
*/
export function Button(props: ButtonHTMLAttributes<HTMLButtonElement>) {
return <button {...props} />;
}
export type ButtonProps = Parameters<typeof Button>[0];
|