Rocky_Mountain_Vending/.pnpm-store/v10/files/18/9bf27887dbb8840a8bed50c3920dfbc84ba615e5bdd0254a672a79c3587dc91881a7709934721e45f6a599395fd30e1070ae03a1ef8d6676a90515075d91d1
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

20 lines
551 B
Text

/**
* @fileOverview Polar Grid
*/
import React, { SVGProps } from 'react';
interface PolarGridProps {
cx?: number;
cy?: number;
innerRadius?: number;
outerRadius?: number;
polarAngles?: number[];
polarRadius?: number[];
gridType?: 'polygon' | 'circle';
radialLines?: boolean;
}
export type Props = SVGProps<SVGPathElement> & PolarGridProps;
export declare const PolarGrid: {
({ cx, cy, innerRadius, outerRadius, gridType, radialLines, ...props }: Props): React.JSX.Element;
displayName: string;
};
export {};