react-plot
Version:
Library of React components to render SVG 2D plots.
11 lines • 421 B
TypeScript
import type { CSSProperties, ReactNode } from 'react';
import type { Align } from 'react-d3-utils';
interface HorizontalAxisLabelProps {
plotWidth: number;
label: ReactNode;
labelStyle?: CSSProperties;
verticalAlign: Align;
}
export default function HorizontalAxisLabel(props: HorizontalAxisLabelProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=HorizontalAxisLabel.d.ts.map