Rocky_Mountain_Vending/.pnpm-store/v10/files/4c/da0711c9e16953656dac61b0c3165f75e234928329b4dcbf38dbe3ace55ec97460f9278b692d0c59866772a3a8ca342bfb34a5b31008c07b8c99171f6577ec
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

17 lines
No EOL
527 B
Text

import React from "react";
/**
* Render a button for a specific day in the calendar.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function DayButton(props) {
const { day, modifiers, ...buttonProps } = props;
const ref = React.useRef(null);
React.useEffect(() => {
if (modifiers.focused)
ref.current?.focus();
}, [modifiers.focused]);
return React.createElement("button", { ref: ref, ...buttonProps });
}
//# sourceMappingURL=DayButton.js.map