UNPKG

709 BTypeScriptView Raw
1import React from "react";
2import type { CalendarDay } from "../classes/index.js";
3import type { Modifiers } from "../types/index.js";
4/**
5 * Render the gridcell of a day in the calendar and handle the interaction and
6 * the focus with they day.
7 *
8 * If you need to just change the content of the day cell, consider swapping the
9 * `DayDate` component instead.
10 *
11 * @group Components
12 * @see https://daypicker.dev/guides/custom-components
13 */
14export declare function Day(props: {
15 /** The day to render. */
16 day: CalendarDay;
17 /** The modifiers to apply to the day. */
18 modifiers: Modifiers;
19} & JSX.IntrinsicElements["td"]): React.JSX.Element;
20export type DayProps = Parameters<typeof Day>[0];