react-date-picker
Version:
A date picker for your React app.
10 lines (9 loc) • 348 B
TypeScript
import Input from './Input.js';
type DayInputProps = {
maxDate?: Date;
minDate?: Date;
month?: string | null;
year?: string | null;
} & Omit<React.ComponentProps<typeof Input>, 'max' | 'min' | 'name'>;
export default function DayInput({ maxDate, minDate, month, year, ...otherProps }: DayInputProps): React.ReactElement;
export {};