Rocky_Mountain_Vending/.pnpm-store/v10/files/1d/22fc845ae6f05bb82aef6a334a99a34605a24e8808c895415ebb48c5599e37023e91ec6b759e2b592f7173f1d6899896c1ef4a51c459388b8fce60e379c4ba
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

11 lines
311 B
Text

/**
* @fileOverview Sector
*/
import React, { SVGProps } from 'react';
import { GeometrySector } from '../util/types';
interface SectorProps extends GeometrySector {
className?: string;
}
export type Props = SVGProps<SVGPathElement> & SectorProps;
export declare const Sector: React.FC<Props>;
export {};