handleDrag = (values) => {
        if (this.props.onDrag) {
            const { min, max, values: currentValue } = values;
            this.props.onDrag(currentValue, [min, max]);
        }