@teravn/onui
Version:
The React UI component library is based on MUI
13 lines (12 loc) • 367 B
TypeScript
import React from 'react';
import type { DatePickerProps } from 'react-datepicker';
export type Props = DatePickerProps & {
className?: string;
customInput?: React.ReactNode;
disabled?: boolean;
name: string;
placeholder?: string;
onChange: (newValue: any) => void;
};
declare const OnDatePicker: React.FC<Props>;
export default OnDatePicker;