react-day-picker
Version:
Customizable Date Picker for React
11 lines (10 loc) • 388 B
TypeScript
import React, { type HTMLAttributes } from "react";
/**
* Render a container wrapping the month grids.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export declare function Months(props: HTMLAttributes<HTMLDivElement>): React.JSX.Element;
/** Props accepted by the {@link Months} component. */
export type MonthsProps = Parameters<typeof Months>[0];