UNPKG

react-plot

Version:

Library of React components to render SVG 2D plots.

11 lines 416 B
import type { CSSProperties, ReactNode } from 'react'; import type { Align } from 'react-d3-utils'; interface VerticalAxisLabelProps { plotHeight: number; label: ReactNode; labelStyle?: CSSProperties; horizontalAlign: Align; } export default function VerticalAxisLabel(props: VerticalAxisLabelProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=VerticalAxisLabel.d.ts.map