UNPKG

react-plot

Version:

Library of React components to render SVG 2D plots.

16 lines 588 B
import type { CSSProperties } from 'react'; import type { Position } from '../../types.js'; import type { Scales, TicksType } from './types.js'; interface VerticalAxisGridlinesProps { plotWidth: number; primaryTicks: TicksType[]; position: Position; style?: CSSProperties; scale?: Scales; primaryGrid?: boolean; secondaryGrid?: boolean; secondaryStyle?: CSSProperties; } export default function VerticalAxisGridlines(props: VerticalAxisGridlinesProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=VerticalAxisGridLines.d.ts.map