@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
23 lines (22 loc) • 551 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.WrapperComponent = exports.Mark = void 0;
var _material = require("@mui/material");
var WrapperComponent = exports.WrapperComponent = (0, _material.styled)('div')({
position: 'relative',
width: '100%',
height: '100%'
});
var Mark = exports.Mark = (0, _material.styled)('div')(function (_ref) {
var width = _ref.width,
height = _ref.height;
return {
position: 'absolute',
bottom: 0,
right: 0,
width: width,
height: height
};
});