Rocky_Mountain_Vending/.pnpm-store/v10/files/da/6e3f39ebb2b5e04a63dec635f41b34e2bf3467c3f3aeef8522d4b2bdc0524b9cd372ff200a65a969a2d38bfee4d707b99be52c5b7ff5acfbc7116285a3f88a
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

12 lines
519 B
Text

import type { CustomComponents, DayPickerProps } from "../types/index.js";
/**
* Merges custom components from the props with the default components.
*
* This function ensures that any custom components provided in the props
* override the default components.
*
* @param customComponents The custom components provided in the DayPicker
* props.
* @returns An object containing the merged components.
*/
export declare function getComponents(customComponents: DayPickerProps["components"]): CustomComponents;