UNPKG

react-nepali-datetime-picker

Version:

A simple and reusable Nepali calendar, date and time picker components for React.

20 lines (19 loc) 309 B
export type NepaliDate = { year: Year; month: Month; date: Day; }; export type Year = { value: number; label: string; }; export type Month = { value: number; label: string; }; export type Day = { id: string; value: number; label: string; currentMonth?: boolean; };