@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
19 lines (18 loc) • 416 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Image = void 0;
var _material = require("@mui/material");
var Image = exports.Image = (0, _material.styled)('img')(function () {
return {
width: '15%',
aspectRatio: '3/2',
objectFit: 'contain',
maxHeight: '50px',
display: 'block',
maxWidth: '100%',
flexGrow: '100%',
flexBasis: '140px'
};
});