UNPKG

react-day-picker

Version:

Customizable Date Picker for React

11 lines (10 loc) 289 B
import React from "react"; /** * Render the button to navigate to the previous month in the calendar. * * @group Components * @see https://daypicker.dev/guides/custom-components */ export function PreviousMonthButton(props) { return React.createElement("button", { ...props }); }