UNPKG

cl-react-graph

Version:
17 lines (16 loc) 366 B
import { FC } from 'react'; export interface IProps { width: number; height: number; padding?: number; data: Record<string, number[]>; colorScheme?: string[]; /** @description Chart <title /> */ title?: string; inactive?: { stroke: string; fill: string; }; } declare const Chord: FC<IProps>; export default Chord;