@gpa-gemstone/react-graph
Version:
Interactive UI Components for GPA products
19 lines (18 loc) • 516 B
TypeScript
import * as React from 'react';
export interface IProps {
offsetLeft: number;
offsetRight: number;
offsetBottom: number;
heightAxis: number;
height: number;
width: number;
setHeight: (h: number) => void;
label?: string;
showTicks?: boolean;
showDate?: boolean;
showRightMostTick?: boolean;
showLeftMostTick?: boolean;
}
declare function TimeAxis(props: IProps): JSX.Element;
declare const _default: React.MemoExoticComponent<typeof TimeAxis>;
export default _default;