Rocky_Mountain_Vending/.pnpm-store/v10/files/7c/51fce96f29c0ee68463c9d9f24ca057b7f0df1d3bf47a496c8d1b5d15d53e63bb575337069aec78488d99329b18d31a8c6bc9798cd8f0ae72132738650341c
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

17 lines
549 B
Text

/**
* @fileOverview Customized
*/
import React, { Component, FunctionComponent, ReactElement } from 'react';
type Comp<P> = FunctionComponent<P> | Component<P> | ReactElement<P>;
export type Props<P, C extends Comp<P>> = P & {
component: C;
};
/**
* custom svg elements by rechart instance props and state.
* @returns {Object} svg elements
*/
export declare function Customized<P, C extends Comp<P>>({ component, ...props }: Props<P, C>): React.JSX.Element;
export declare namespace Customized {
var displayName: string;
}
export {};