UNPKG

cl-react-graph

Version:
12 lines (11 loc) 297 B
import { FC } from 'react'; import { IProps } from '../utils/useMakeLine'; export declare type TPoints = Omit<IProps, 'line'> & { radius?: number; fill?: string; label?: string; stroke?: string; showTitle?: boolean; }; declare const Points: FC<TPoints>; export default Points;