UNPKG

react-day-picker

Version:

Customizable Date Picker for React

10 lines (8 loc) 245 B
import type { Locale } from 'date-fns'; import { format } from 'date-fns'; /** * The default formatter for the Day button. */ export function formatDay(day: Date, options?: { locale?: Locale }): string { return format(day, 'd', options); }