UNPKG

345 BTypeScriptView Raw
1import React, { type TableHTMLAttributes } from "react";
2/**
3 * Render the grid of days in a month.
4 *
5 * @group Components
6 * @see https://daypicker.dev/guides/custom-components
7 */
8export declare function MonthGrid(props: TableHTMLAttributes<HTMLTableElement>): React.JSX.Element;
9export type MonthGridProps = Parameters<typeof MonthGrid>[0];