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>
9 lines
498 B
Text
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 {};
|