Rocky_Mountain_Vending/.pnpm-store/v10/files/2b/ba680d29b5e64388937c3957cf6f5662f12260039e0d6f959e9820b85bace328bb8471c661ecdb473836a7650be04ed62c29e84addb8a91730a234881001bf
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
No EOL
427 B
Text

import React 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) {
const { components } = useDayPicker();
return React.createElement(components.Button, { ...props });
}
//# sourceMappingURL=NextMonthButton.js.map