Rocky_Mountain_Vending/.pnpm-store/v10/files/5a/9c1926e4d5b16279166c7644678405d829a2033a8b449e352327be2e6a6d6ef3636b548a3c97a1c09bc9b5a2e7c049b3425412172938823722bcf1636e00ef
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

15 lines
392 B
Text

/**
* @fileOverview Dot
*/
import * as React from 'react';
import { PresentationAttributesWithProps } from '../util/types';
interface DotProps {
className?: string;
cx?: number;
cy?: number;
r?: number;
clipDot?: boolean;
}
export type Props = PresentationAttributesWithProps<DotProps, SVGCircleElement> & DotProps;
export declare const Dot: React.FC<Props>;
export {};