reaviz
Version:
Data Visualization using React
13 lines (12 loc) • 366 B
TypeScript
import { FC } from 'react';
export interface BrushHandleProps {
/**
* Height of the handle. Set internally by the parent component.
*/
height: number;
/**
* Fires when the handle is dragged. `deltaX` is the change in x position.
*/
onHandleDrag: (deltaX: number) => void;
}
export declare const BrushHandle: FC<BrushHandleProps>;