UNPKG

@gpa-gemstone/react-graph

Version:
21 lines (20 loc) 562 B
import * as React from 'react'; export interface IProps { offsetLeft: number; offsetRight: number; offsetBottom: number; offsetTop: number; heightAxis: number; height: number; width: number; setHeight: (h: number) => void; showGrid?: boolean; useFactor?: boolean; showTicks?: boolean; label?: string; showRightMostTick?: boolean; showLeftMostTick?: boolean; } declare function LogAxis(props: IProps): JSX.Element; declare const _default: React.MemoExoticComponent<typeof LogAxis>; export default _default;