UNPKG

407 BPlain TextView Raw
1import type { LabelOptions } from "../lib/dateLib.js";
2
3/**
4 * The ARIA label for next month button.
5 *
6 * @defaultValue `"Go to the Next Month"`
7 * @group Labels
8 * @see https://daypicker.dev/docs/translation#aria-labels
9 */
10export function labelNext(
11 /** Undefined where there's no next month no navigate to. */
12 month: Date | undefined,
13 options?: LabelOptions
14) {
15 return "Go to the Next Month";
16}