UNPKG

327 BTypeScriptView Raw
1import React from "react";
2
3/**
4 * Render the label in the month caption.
5 *
6 * @group Components
7 * @see https://daypicker.dev/guides/custom-components
8 */
9export function CaptionLabel(props: JSX.IntrinsicElements["span"]) {
10 return <span {...props} />;
11}
12
13export type CaptionLabelProps = Parameters<typeof CaptionLabel>[0];