UNPKG

@brightsoftware/date-np

Version:

Simple & minimal Nepali date picker that just works.

19 lines (18 loc) 476 B
import { NepaliDate } from "../NepaliDate"; type pickerBodyProps = { onSelect?: (selectedDate: Date | NepaliDate) => void; /** * datehover class */ dateHover?: string; /** * selected class */ selected?: string; /** * today class */ todayStyle?: string; }; declare const PickerBody: ({ onSelect, todayStyle, selected, dateHover }: pickerBodyProps) => import("react/jsx-runtime").JSX.Element; export default PickerBody;