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