Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
461 B
Text
13 lines
461 B
Text
/**
|
|
* Generates the ARIA label for the "previous month" button.
|
|
*
|
|
* @defaultValue `"Go to the Previous Month"`
|
|
* @param month - The date representing the previous month, or `undefined` if
|
|
* there is no previous month.
|
|
* @returns The ARIA label for the "previous month" button.
|
|
* @group Labels
|
|
* @see https://daypicker.dev/docs/translation#aria-labels
|
|
*/
|
|
export function labelPrevious(month: Date | undefined) {
|
|
return "Go to the Previous Month";
|
|
}
|