@rnwonder/react-date-picker
Version:
A lightweight, customizable, and accessible date picker component for React applications.
10 lines (8 loc) • 429 B
TypeScript
import { DatePickerProps } from './DatePicker';
import { DatePickerType } from '../interface/general';
export interface DatePickerStandAloneProps extends Omit<DatePickerProps, "handleOnChange" | "type" | "yearSelectorCount"> {
type?: DatePickerType;
yearSelectorCount?: number;
}
declare const CalendarExport: (props: DatePickerStandAloneProps) => import("react/jsx-runtime").JSX.Element;
export default CalendarExport;