importReactfrom"react";
/**
* Render the button to navigate to the next month in the calendar.
*
* @groupComponents
* @see https://daypicker.dev/guides/custom-components
*/exportfunctionNextMonthButton(props) {
returnReact.createElement("button", { ...props });
}