importReactfrom"react";
/**
* Render a table header cell with the name of a weekday (e.g., "Mo", "Tu").
*
* @groupComponents
* @see https://daypicker.dev/guides/custom-components
*/exportfunctionWeekday(props) {
returnReact.createElement("th", { ...props });
}