UNPKG

cl-react-graph

Version:
9 lines (8 loc) 209 B
import { FC, HTMLAttributes } from 'react'; interface IPathProps { fill: string; d: string; opacity: number; } declare const Path: FC<IPathProps & HTMLAttributes<SVGElement>>; export default Path;