Rocky_Mountain_Vending/.pnpm-store/v10/files/84/67a90432135576ebaf82db0ec7be106f79d94436f87532217a7f70669a7391e66663c7146cb1d7b98bf80b732294d400e01fe07703493d406e34176ebec6b8
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

20 lines
573 B
Text

/**
* @fileOverview Rectangle
*/
import React, { SVGProps } from 'react';
import { AnimationDuration, AnimationTiming } from '../util/types';
interface TrapezoidProps {
className?: string;
x?: number;
y?: number;
upperWidth?: number;
lowerWidth?: number;
height?: number;
isUpdateAnimationActive?: boolean;
animationBegin?: number;
animationDuration?: AnimationDuration;
animationEasing?: AnimationTiming;
}
export type Props = SVGProps<SVGPathElement> & TrapezoidProps;
export declare const Trapezoid: React.FC<Props>;
export {};