@sikka/hawa
Version:
Modern UI Kit made with Tailwind
16 lines (13 loc) • 484 B
text/typescript
import * as React from 'react';
import { DayPicker, DateRange } from 'react-day-picker';
type CalendarProps = React.ComponentProps<typeof DayPicker>;
type CalendarValueType = {
single: Date;
multiple: Date[];
range: DateRange;
};
declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): React.JSX.Element;
declare namespace Calendar {
var displayName: string;
}
export { Calendar, type CalendarProps, type CalendarValueType };