UNPKG

react-day-picker

Version:

Customizable Date Picker for React

10 lines (8 loc) 239 B
import { dateLib } from "../lib/dateLib.js"; import type { DateLib, DayPickerProps } from "../types/index.js"; export function getDateLib(customLib: DayPickerProps["dateLib"]): DateLib { return { ...dateLib, ...customLib }; }