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>
20 lines
736 B
Text
20 lines
736 B
Text
import React, { type HTMLAttributes } from "react";
|
|
import type { CalendarDay } from "../classes/index.js";
|
|
import type { Modifiers } from "../types/index.js";
|
|
/**
|
|
* Render a grid cell for a specific day in the calendar.
|
|
*
|
|
* Handles interaction and focus for the day. If you only need to change the
|
|
* content of the day cell, consider swapping the `DayButton` component
|
|
* instead.
|
|
*
|
|
* @group Components
|
|
* @see https://daypicker.dev/guides/custom-components
|
|
*/
|
|
export declare function Day(props: {
|
|
/** The day to render. */
|
|
day: CalendarDay;
|
|
/** The modifiers to apply to the day. */
|
|
modifiers: Modifiers;
|
|
} & HTMLAttributes<HTMLDivElement>): React.JSX.Element;
|
|
export type DayProps = Parameters<typeof Day>[0];
|