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>
17 lines
549 B
Text
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 {};
|