UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

9 lines (8 loc) 364 B
import * as React from "react"; import { DayPicker } from "react-day-picker"; export type CalendarProps = React.ComponentProps<typeof DayPicker>; declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): import("react/jsx-runtime").JSX.Element; declare namespace Calendar { var displayName: string; } export { Calendar };