1 | import React from "react";
|
2 | /**
|
3 | * Render the caption of a month in the calendar.
|
4 | *
|
5 | * @group Components
|
6 | * @see https://daypicker.dev/guides/custom-components
|
7 | */
|
8 | export function MonthCaption(props) {
|
9 | const { calendarMonth, displayIndex, ...divProps } = props;
|
10 | return React.createElement("div", { ...divProps });
|
11 | }
|
12 | //# sourceMappingURL=MonthCaption.js.map |
\ | No newline at end of file |