UNPKG

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