UNPKG

@atlaskit/calendar

Version:

An interactive calendar for date selection experiences.

10 lines (9 loc) 238 B
import type { WeekDay } from '../../types'; export default function useLocale({ locale, weekStartDay, }: { locale: string; weekStartDay: WeekDay; }): { monthsLong: string[]; daysShort: string[]; daysLong: string[]; };