Files
avz-site/node_modules/react-day-picker/dist/esm/helpers/getComponents.d.ts
T
2026-05-30 19:59:39 -03:00

13 lines
519 B
TypeScript

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;