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