UNPKG

305 BPlain TextView Raw
1import * as components from "../components/custom-components.js";
2import type { CustomComponents, DayPickerProps } from "../types/index.js";
3
4export function getComponents(
5 customComponents: DayPickerProps["components"]
6): CustomComponents {
7 return {
8 ...components,
9 ...customComponents
10 };
11}