UNPKG

react-plot

Version:

Library of React components to render SVG 2D plots.

12 lines 489 B
import type { SVGProps } from 'react'; import type { ScalarValue } from '../../types.js'; export interface AnnotationCircleProps extends Omit<SVGProps<SVGCircleElement>, 'x1' | 'x2' | 'y1' | 'y2' | 'cx' | 'cy' | 'r' | 'fill'> { x: ScalarValue; y: ScalarValue; r: ScalarValue; xAxis?: string; yAxis?: string; color?: string; } export declare function Circle(props: AnnotationCircleProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Circle.d.ts.map