Rocky_Mountain_Vending/.pnpm-store/v10/files/ea/0ae1f0f400246aad08d567cd4247066d336ac0b0686e9be6fe319624633653f79f54282c1b0a27391bdfeda36470898794da38fd21fe7edcb81abfbaf3d647
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

9 lines
498 B
Text

import React, { SVGProps } from 'react';
import { FunnelProps, FunnelTrapezoidItem } from '../numberAxis/Funnel';
import { Props as TrapezoidProps } from '../shape/Trapezoid';
export declare function typeGuardTrapezoidProps(option: SVGProps<SVGPathElement>, props: FunnelTrapezoidItem): TrapezoidProps;
type FunnelTrapezoidProps = {
option: FunnelProps['activeShape'];
} & FunnelTrapezoidItem;
export declare function FunnelTrapezoid(props: FunnelTrapezoidProps): React.JSX.Element;
export {};