UNPKG

recharts

Version:
14 lines (13 loc) 397 B
import { PureComponent } from 'react'; import { PresentationAttributesWithProps } from '../util/types'; interface DotProps { className?: string; cx?: number; cy?: number; r?: number; } export declare type Props = PresentationAttributesWithProps<DotProps, SVGCircleElement> & DotProps; export declare class Dot extends PureComponent<Props> { render(): JSX.Element; } export {};