zent
Version:
一套前端设计语言和基于React的实现
15 lines (14 loc) • 459 B
JavaScript
import { prefix } from './prefix';
export var LeftBottom = function (_a) {
var contentRect = _a.contentRect, relativeRect = _a.relativeRect, cushion = _a.cushion;
var x = relativeRect.left - contentRect.width - cushion;
var y = relativeRect.bottom - contentRect.height;
return {
style: {
position: 'absolute',
left: x,
top: y,
},
className: prefix('position-left-bottom'),
};
};