@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
19 lines (18 loc) • 487 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.EntryRoot = void 0;
var _material = require("@mui/material");
var EntryRoot = exports.EntryRoot = (0, _material.styled)('div', {
shouldForwardProp: function shouldForwardProp(prop) {
return prop !== 'variant';
},
label: 'EntryRoot',
name: 'EntryRoot'
})(function (_ref) {
var variant = _ref.variant;
return Object.assign({}, variant === 'grid' && {
gridColumn: '1 / -1'
});
});