UNPKG

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