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