zent
Version:
一套前端设计语言和基于React的实现
11 lines (10 loc) • 484 B
JavaScript
import createArrowPosition from './create';
var ArrowRightBottomPosition = function (_a) {
var relativeRect = _a.relativeRect, contentRect = _a.contentRect, cushion = _a.cushion;
var right = relativeRect.right, top = relativeRect.top, bottom = relativeRect.bottom;
var x = right + cushion;
var middle = (top + bottom) / 2;
var y = middle - (contentRect.height - 9);
return createArrowPosition(x, y, "right-bottom");
};
export default ArrowRightBottomPosition;