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>
20 lines
551 B
Text
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 {};
|