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>
9 lines
444 B
Text
9 lines
444 B
Text
import React from "react";
|
|
import { type DayPickerProps } from "./index.js";
|
|
/**
|
|
* @deprecated Use the `timeZone` prop instead of this function. This function
|
|
* wraps the DayPicker component and sets the `timeZone` to "utc".
|
|
* @param props - The props to pass to the DayPicker component.
|
|
* @returns The DayPicker component with the `timeZone` set to "utc".
|
|
*/
|
|
export declare function DayPicker(props: DayPickerProps): React.JSX.Element;
|