@gpa-gemstone/react-graph
Version:
Interactive UI Components for GPA products
15 lines (14 loc) • 399 B
TypeScript
import { AxisIdentifier, LineStyle } from './GraphContext';
export interface IProps {
start?: number;
end?: number;
Value: number;
setValue?: (x: number) => void;
onClick?: (x: number) => void;
color: string;
lineStyle: LineStyle;
width: number;
axis?: AxisIdentifier;
}
declare function VerticalMarker(props: IProps): JSX.Element;
export default VerticalMarker;