UNPKG

react-plot

Version:

Library of React components to render SVG 2D plots.

6 lines 271 B
import { jsx as _jsx } from "react/jsx-runtime"; export default function HorizontalAxisLine(props) { const { plotWidth, style } = props; return _jsx("line", { x1: 0, x2: plotWidth, stroke: "black", style: style }); } //# sourceMappingURL=HorizontalAxisLine.js.map