Rocky_Mountain_Vending/.pnpm-store/v10/files/b7/0dfd2c4146c908ae68770941a13e8907759d3a271b71cb89dfc76c725bd9addc8a39c2fbd8b7917a1662f76e01bfcd1edc24040d365fc58544d3b7fa639a57
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

23 lines
656 B
Text

import React, { type HTMLAttributes } from "react";
import type { CalendarMonth } from "../classes/index.js";
/**
* Render the caption for a month in the calendar.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function MonthCaption(
props: {
/** The month to display in the caption. */
calendarMonth: CalendarMonth;
/** The index of the month being displayed. */
displayIndex: number;
} & HTMLAttributes<HTMLDivElement>
) {
const { calendarMonth, displayIndex, ...divProps } = props;
return <div {...divProps} />;
}
export type MonthCaptionProps = Parameters<typeof MonthCaption>[0];