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>
11 lines
582 B
Text
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;
|