Rocky_Mountain_Vending/.pnpm-store/v10/files/9a/7dfd2bb4fe34974a2b420d9a5d0eccc5d312e9962e2f21b5942915c1541c9c801c561320f2a8ba180fb8ea0549b67bff15ea872e1c8c9da9f1ae9b0c375529
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
582 B
Text

import React, { SVGProps } from 'react';
import { RadialBarProps } from '../polar/RadialBar';
import { Props as SectorProps } from '../shape/Sector';
export declare function parseCornerRadius(cornerRadius: string | number): number;
export declare function typeGuardSectorProps(option: SVGProps<SVGPathElement>, props: SectorProps): SectorProps;
export interface RadialBarSectorProps extends SectorProps {
index?: number;
option: RadialBarProps['activeShape'];
isActive: boolean;
}
export declare function RadialBarSector(props: RadialBarSectorProps): React.JSX.Element;