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>
15 lines
584 B
Text
15 lines
584 B
Text
import React, { ReactElement } from 'react';
|
|
import { ChartCoordinate, ChartOffset, LayoutType, TooltipEventType } from '../util/types';
|
|
export type CursorProps = {
|
|
activeCoordinate: ChartCoordinate;
|
|
activePayload: any[];
|
|
activeTooltipIndex: number;
|
|
chartName: string;
|
|
element: ReactElement;
|
|
isActive: boolean;
|
|
layout: LayoutType;
|
|
offset: ChartOffset;
|
|
tooltipAxisBandSize: number;
|
|
tooltipEventType: TooltipEventType;
|
|
};
|
|
export declare function Cursor(props: CursorProps): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
|