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>
11 lines
449 B
Text
11 lines
449 B
Text
import type { DayPickerProps } from "../types/index.js";
|
|
/**
|
|
* Extracts `data-` attributes from the DayPicker props.
|
|
*
|
|
* This function collects all `data-` attributes from the props and adds
|
|
* additional attributes based on the DayPicker configuration.
|
|
*
|
|
* @param props The DayPicker props.
|
|
* @returns An object containing the `data-` attributes.
|
|
*/
|
|
export declare function getDataAttributes(props: DayPickerProps): Record<string, unknown>;
|