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>
20 lines
573 B
Text
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 {};
|