Rocky_Mountain_Vending/.pnpm-store/v10/files/36/d16116d7f62399a08baad2347ff3e3a2088729270d8b54bea3d9c210ac3ee0c358704e66453ed21b23e5cc03e4cfd80de1bbe5be10a92b4cb3462baf367fb3
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

13 lines
354 B
Text

import React, { type HTMLAttributes } from "react";
/**
* Render the label in the month caption.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function CaptionLabel(props: HTMLAttributes<HTMLSpanElement>) {
return <span {...props} />;
}
export type CaptionLabelProps = Parameters<typeof CaptionLabel>[0];