UNPKG

cl-react-graph

Version:
10 lines (9 loc) 234 B
import { FC, HTMLAttributes } from 'react'; interface IProps { width: number; height: number; padding?: number; description?: string; } declare const Base: FC<IProps & HTMLAttributes<SVGElement>>; export default Base;