UNPKG

@atlaskit/calendar

Version:

An interactive calendar for date selection experiences.

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