Rocky_Mountain_Vending/.pnpm-store/v10/files/0c/2c3c3511c2a99e82913ff78d63cbd75a36a79b90de5bcb8a52f53d060062c8c1e448da923161442516d0b8b2241829728f5dad29aef2dcc9185936a0e29275
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

14 lines
397 B
Text

/**
* @fileOverview Polygon
*/
import React, { SVGProps } from 'react';
import { Coordinate } from '../util/types';
interface PolygonProps {
className?: string;
points?: Coordinate[];
baseLinePoints?: Coordinate[];
connectNulls?: boolean;
}
export type Props = Omit<SVGProps<SVGPolygonElement>, 'points'> & PolygonProps;
export declare const Polygon: React.FC<Props>;
export {};