UNPKG

reaviz

Version:

Data Visualization using React

25 lines (24 loc) 534 B
import { FC } from 'react'; export interface RadialAxisArcLineProps { /** * Stroke color of the arc. * * @default '#71808d' */ stroke: ((index: number) => string) | string; /** * Data to render the line. */ data: Array<{ x: number; y: number; }>; /** * Index of the arc. */ index: number; } export declare const RadialAxisArcLine: FC<Partial<RadialAxisArcLineProps>>; export declare const RADIAL_AXIS_ARC_LINE_DEFAULT_PROPS: { stroke: string; };