@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
15 lines (14 loc) • 344 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.CustomBox = void 0;
var _material = require("@mui/material");
var CustomBox = exports.CustomBox = (0, _material.styled)(_material.Box)(function () {
return {
maxWidth: '500px',
minHeight: '400px',
padding: '5px',
overflow: 'auto'
};
});