/** * @fileOverview Layer */ import React, { ReactNode, SVGProps } from 'react'; import classNames from 'classnames'; import { filterProps } from '../util/types'; interface LayerProps { className?: string; children?: ReactNode; } type Props = SVGProps & LayerProps; function Layer(props: Props) { const { children, className, ...others } = props; const layerClass = classNames('recharts-layer', className); return ( {children} ); } export default Layer;