forked from sagnik/Project_Velocity
15 lines
365 B
JavaScript
15 lines
365 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.labelNav = labelNav;
|
|
/**
|
|
* 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
|
|
*/
|
|
function labelNav() {
|
|
return "";
|
|
}
|