UNPKG

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