Rocky_Mountain_Vending/.pnpm-store/v10/files/38/1917d0e2110ebe57376ba1e04852fef3f282b20aa47606904b8e9e384accfe6c11a6e36c4eb7af3f58e4a9da1216f8c077ec204284da3803585406ef946a29
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

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;
}>>;