UNPKG

react-day-picker

Version:

Customizable Date Picker for React

11 lines (8 loc) 266 B
import format from 'date-fns/format'; import { DayLabel } from 'types/Labels'; /** * The default ARIA label for the day button. */ export const labelDay: DayLabel = (day, activeModifiers, options): string => { return format(day, 'do MMMM (EEEE)', options); };