UNPKG

react-nepali-datetime

Version:

React components for a Nepali DateTime picker, built on top of nepali-datetime.

13 lines (12 loc) 525 B
import { default as React, ReactElement } from 'react'; import { default as NepaliDate } from 'nepali-datetime'; import { Locale } from '../../types'; interface INepaliDatePickerProps extends React.InputHTMLAttributes<HTMLInputElement> { value?: string; format?: string; inputElement?: ReactElement | null; locale?: Locale; onDateSelect?: ((value: string, nepaliDate: NepaliDate | null) => void) | null; } declare const NepaliDatePicker: React.FC<INepaliDatePickerProps>; export default NepaliDatePicker;