UNPKG

@gpa-gemstone/react-graph

Version:
15 lines (14 loc) 399 B
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;