@gpa-gemstone/react-graph
Version:
Interactive UI Components for GPA products
13 lines (12 loc) • 316 B
TypeScript
import { AxisIdentifier } from './GraphContext';
interface IProps {
Color: string;
Opacity: number;
XVals: [number, number];
StartY?: number;
EndY?: number;
Axis?: AxisIdentifier;
Stroke?: string;
}
declare const HighlightBox: (props: IProps) => JSX.Element;
export default HighlightBox;