Rocky_Mountain_Vending/.pnpm-store/v10/files/a3/d026bc5c72032a790d754f34905ec1771798e1e2a349b517bb997c34f58e3bbe1fd76c8d17a638345db57f682a0ee9461d50c4a346b834066ac2b5b464a13c
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

21 lines
643 B
Text

/**
* @fileOverview Curve
*/
import React, { SVGProps } from 'react';
import { SymbolType as D3SymbolType } from 'victory-vendor/d3-shape';
import { SymbolType } from '../util/types';
type SizeType = 'area' | 'diameter';
export interface InnerSymbolsProp {
className?: string;
type: SymbolType;
cx?: number;
cy?: number;
size?: number;
sizeType?: SizeType;
}
export type SymbolsProps = SVGProps<SVGPathElement> & InnerSymbolsProp;
export declare const Symbols: {
({ type, size, sizeType, ...rest }: SymbolsProps): React.JSX.Element;
registerSymbol: (key: string, factory: D3SymbolType) => void;
};
export {};