Rocky_Mountain_Vending/.pnpm-store/v10/files/f6/e1e846d21d68e1d1718330bb21fc1f9287fd4f4e323926084c113f720007833d8f5b769af94daa6829231f4a39f8e3b2120fae2a21a26b8ef7a2e62e3b019f
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

7 lines
333 B
Text

import * as React from 'react';
import { ActiveShape, SymbolType } from './types';
import { ScatterPointItem } from '../cartesian/Scatter';
export declare function ScatterSymbol({ option, isActive, ...props }: {
option: ActiveShape<ScatterPointItem> | SymbolType;
isActive: boolean;
} & ScatterPointItem): React.JSX.Element;