UNPKG

datepicker-nepali-reactjs

Version:
14 lines (13 loc) 475 B
import { FunctionComponent } from "react"; import "./NepaliDatePicker.scss"; interface DatePickerOptions { className?: string; defaultDate?: string | boolean | undefined; placeholder?: string; disabled?: boolean; showResetDateButton?: boolean; resetButtonElement?: any; onDateSelect: (date: string | boolean | undefined) => any; } declare const NepaliDatePicker: FunctionComponent<DatePickerOptions>; export default NepaliDatePicker;