UNPKG

recharts

Version:
13 lines (12 loc) 358 B
import React from 'react'; import { PresentationAttributesWithProps } from '../util/types'; interface DotProps { className?: string; cx?: number; cy?: number; r?: number; clipDot?: boolean; } export type Props = PresentationAttributesWithProps<DotProps, SVGCircleElement> & DotProps; export declare const Dot: React.FC<Props>; export {};