Rocky_Mountain_Vending/.pnpm-store/v10/files/8a/77e983d857a969136feded9a04ce05919d95be4cc5549e5ed4d20cd09f1798feea5df03f9fba21e66b79e8717aedb7734db85155cd03f2522564b5f4a5c678
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

15 lines
442 B
Text

import * as defaultLabels from "../labels/index.js";
import type { DayPickerProps, Labels } from "../types/index.js";
/**
* Merges custom labels from the props with the default labels.
*
* @param customLabels The custom labels provided in the DayPicker props.
* @returns The merged labels object.
*/
export function getLabels(customLabels: DayPickerProps["labels"]): Labels {
return {
...defaultLabels,
...customLabels
};
}