UNPKG

373 BTypeScriptView Raw
1import React, { type ThHTMLAttributes } from "react";
2/**
3 * Render the column header with the weekday name (e.g. "Mo", "Tu", etc.).
4 *
5 * @group Components
6 * @see https://daypicker.dev/guides/custom-components
7 */
8export declare function Weekday(props: ThHTMLAttributes<HTMLTableCellElement>): React.JSX.Element;
9export type WeekdayProps = Parameters<typeof Weekday>[0];