@pagamio/frontend-commons-lib
Version:
Pagamio library for Frontend reusable components like the form engine and table container
10 lines (9 loc) • 365 B
TypeScript
import { DayPicker } from 'react-day-picker';
import * as React from 'react';
type CalendarProps = React.ComponentProps<typeof DayPicker>;
declare const Calendar: {
({ className, classNames, showOutsideDays, ...props }: CalendarProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default Calendar;
export type { CalendarProps };