AbdulElahGwaith's picture
Upload folder using huggingface_hub
cf86710 verified
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];