UNPKG

react-plot

Version:

Library of React components to render SVG 2D plots.

15 lines 517 B
import type { CSSProperties, ReactNode } from 'react'; import type { Align } from 'react-d3-utils'; import type { ScalarValue } from '../../types.js'; export interface AnnotationGroupProps { x: ScalarValue; y: ScalarValue; children: ReactNode; xAxis?: string; yAxis?: string; horizontalAlign?: Align; verticalAlign?: Align; style?: CSSProperties; } export declare function Group(props: AnnotationGroupProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Group.d.ts.map