UNPKG

react-plot

Version:

Library of React components to render SVG 2D plots.

9 lines 435 B
import type { ScaleLinear } from 'd3-scale'; import type { AxisChildProps } from './types.js'; interface LinearAxisProps extends AxisChildProps<number> { scale: ScaleLinear<number, number>; } declare function LinearAxis(props: LinearAxisProps): import("react/jsx-runtime").JSX.Element; declare const _default: import("react").MemoExoticComponent<typeof LinearAxis>; export default _default; //# sourceMappingURL=LinearAxis.d.ts.map