@while-and-for/tremor-react
Version:
The React library to build dashboards faster.
10 lines (9 loc) • 440 B
TypeScript
import React from "react";
import { DayPickerRangeProps, DayPickerSingleProps } from "react-day-picker";
declare function Calendar<T extends DayPickerSingleProps | DayPickerRangeProps>({ mode, defaultMonth, selected, onSelect, locale, disabled, enableYearNavigation, classNames, ...other }: T & {
enableYearNavigation: boolean;
}): React.JSX.Element;
declare namespace Calendar {
var displayName: string;
}
export default Calendar;