Rocky_Mountain_Vending/.pnpm-store/v10/files/ec/765ad2eeacf763cfd77a9736a80c686fabd1926db5782eb87aa20327bd81d6edf957eb8f3578504ea80c6f5fd2ee89dd0c961ef01928c363855e3a837efbec
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

16 lines
346 B
Text

/**
* @fileOverview Cross
*/
import React, { SVGProps } from 'react';
interface CrossProps {
x?: number;
y?: number;
width?: number;
height?: number;
top?: number;
left?: number;
className?: number;
}
export type Props = SVGProps<SVGPathElement> & CrossProps;
export declare const Cross: React.FC<Props>;
export {};