react-day-picker
Version:
Customizable Date Picker for React
14 lines • 407 B
JavaScript
import { dateLib as defaultDateLib } from "../lib/index.js";
/**
* Format the day date shown in the day cell.
*
* @defaultValue `d` (e.g. "1")
* @group Formatters
* @see https://daypicker.dev/docs/translation#custom-formatters
*/
export function formatDay(date, options,
/** @ignore */
dateLib = defaultDateLib) {
return dateLib.format(date, "d", options);
}
//# sourceMappingURL=formatDay.js.map