UNPKG

348 BTypeScriptView Raw
1import React from "react";
2
3/**
4 * Render the row with the weekday names.
5 *
6 * @group Components
7 * @see https://daypicker.dev/guides/custom-components
8 */
9export function Weekdays(props: JSX.IntrinsicElements["tr"]) {
10 return (
11 <thead>
12 <tr {...props} />
13 </thead>
14 );
15}
16
17export type WeekdaysProps = Parameters<typeof Weekdays>[0];