Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
1.04 kB
/**
* @fileOverview Customized
*/
import * as React from 'react';
import { isValidElement, cloneElement, createElement, Component, FunctionComponent, ReactElement } from 'react';
import { Layer } from '../container/Layer';
import { warn } from '../util/LogUtils';
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 function Customized<P, C extends Comp<P>>({ component, ...props }: Props<P, C>) {
let child;
if (isValidElement(component)) {
child = cloneElement(component, props);
} else if (typeof component === 'function') {
child = createElement(component, props as any);
} else {
warn(false, "Customized's props `component` must be React.element or Function, but got %s.", typeof component);
}
return <Layer className="recharts-customized-wrapper">{child}</Layer>;
}
Customized.displayName = 'Customized';