File size: 272 Bytes
cf86710 | 1 2 3 4 5 6 7 8 9 10 11 12 | /**
* Generates the ARIA label for the navigation toolbar.
*
* @defaultValue `""`
* @returns The ARIA label for the navigation toolbar.
* @group Labels
* @see https://daypicker.dev/docs/translation#aria-labels
*/
export function labelNav(): string {
return "";
}
|