UNPKG

316 BPlain TextView Raw
1import type { LabelOptions } from "../lib/dateLib.js";
2
3/**
4 * The ARIA label for the months dropdown.
5 *
6 * @defaultValue `"Choose the Month"`
7 * @group Labels
8 * @see https://daypicker.dev/docs/translation#aria-labels
9 */
10export function labelMonthDropdown(options?: LabelOptions) {
11 return "Choose the Month";
12}