forked from sagnik/Project_Velocity
10 lines
348 B
TypeScript
10 lines
348 B
TypeScript
import React, { type HTMLAttributes } from "react";
|
|
/**
|
|
* Render the container for the weeks in the month grid.
|
|
*
|
|
* @group Components
|
|
* @see https://daypicker.dev/guides/custom-components
|
|
*/
|
|
export declare function Weeks(props: HTMLAttributes<HTMLTableSectionElement>): React.JSX.Element;
|
|
export type WeeksProps = Parameters<typeof Weeks>[0];
|