UNPKG

react-day-picker

Version:

Customizable Date Picker for React

11 lines (10 loc) 413 B
import React, { type HTMLAttributes } from "react"; /** * Render the navigation dropdowns for the calendar. * * @group Components * @see https://daypicker.dev/guides/custom-components */ export declare function DropdownNav(props: HTMLAttributes<HTMLDivElement>): React.JSX.Element; /** Props accepted by the {@link DropdownNav} component. */ export type DropdownNavProps = Parameters<typeof DropdownNav>[0];