UNPKG

react-day-picker

Version:

Customizable Date Picker for React

11 lines (8 loc) 256 B
import format from 'date-fns/format'; import { WeekdayLabel } from 'types/Labels'; /** * The default ARIA label for the Weekday element. */ export const labelWeekday: WeekdayLabel = (day, options): string => { return format(day, 'cccc', options); };