UNPKG

cl-react-graph

Version:
9 lines (8 loc) 204 B
import { FC } from 'react'; import { IProps } from '../utils/useMakeLine'; declare type Props = { animate?: boolean; label: string; } & IProps; declare const Line: FC<Props>; export default Line;