Rocky_Mountain_Vending/.pnpm-store/v10/files/d3/374ff03c61e6983a314d1a4b3845e2460a13a77f082a80c4c7b2d81cbf7940c54533c80bb314828734890933ba0b0e83b8843e0b370352bc3d45bb225a15b7
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

8 lines
278 B
Text

import { Props as PolarAngleAxisProps } from './PolarAngleAxis';
import { Props as PolarRadiusAxisProps } from './PolarRadiusAxis';
export type AngleAxisProps = PolarAngleAxisProps & {
scale: any;
};
export type RadiusAxisProps = PolarRadiusAxisProps & {
scale: any;
};