recharts
Version:
React charts
14 lines (13 loc) • 397 B
TypeScript
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 {};