react-day-picker
Version:
Customizable Date Picker for React
16 lines • 474 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.labelPrevious = labelPrevious;
/**
* The ARIA label for previous month button.
*
* @defaultValue `"Go to the Previous Month"`
* @group Labels
* @see https://daypicker.dev/docs/translation#aria-labels
*/
function labelPrevious(
/** Undefined where there's no previous month to navigate to. */
month) {
return "Go to the Previous Month";
}
//# sourceMappingURL=labelPrevious.js.map
;