UNPKG

338 BTypeScriptView Raw
1import React, { type HTMLAttributes } from "react";
2/**
3 * Render the row with the weekday names.
4 *
5 * @group Components
6 * @see https://daypicker.dev/guides/custom-components
7 */
8export declare function Weekdays(props: HTMLAttributes<HTMLTableRowElement>): React.JSX.Element;
9export type WeekdaysProps = Parameters<typeof Weekdays>[0];