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