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