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>
22 lines
702 B
Text
22 lines
702 B
Text
import React, { ReactElement, CSSProperties } from 'react';
|
|
export interface Props {
|
|
aspect?: number;
|
|
width?: string | number;
|
|
height?: string | number;
|
|
minWidth?: string | number;
|
|
minHeight?: string | number;
|
|
initialDimension?: {
|
|
width: number;
|
|
height: number;
|
|
};
|
|
maxHeight?: number;
|
|
children: ReactElement;
|
|
debounce?: number;
|
|
id?: string | number;
|
|
className?: string | number;
|
|
style?: Omit<CSSProperties, keyof Props>;
|
|
onResize?: (width: number, height: number) => void;
|
|
}
|
|
export declare const ResponsiveContainer: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement | {
|
|
current: HTMLDivElement;
|
|
}>>;
|