Rocky_Mountain_Vending/.pnpm-store/v10/files/19/b2b70f1d42c9becc792d19d3c6f241d5d8d2312f4d1c9500dd56c83c6b29a3575d9620f8dfee246a08aac0e340e90ec1a2f38ba687c2d4762afb98f8b56e63
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

18 lines
513 B
Text

import React, { type ButtonHTMLAttributes } from "react";
import { useDayPicker } from "../useDayPicker.js";
/**
* Render the button to navigate to the next month in the calendar.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function NextMonthButton(
props: ButtonHTMLAttributes<HTMLButtonElement>
) {
const { components } = useDayPicker();
return <components.Button {...props} />;
}
export type NextMonthButtonProps = Parameters<typeof NextMonthButton>[0];