@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
26 lines (25 loc) • 663 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.WrapperSVG = exports.WrapperInfoFile = void 0;
var _material = require("@mui/material");
var WrapperInfoFile = exports.WrapperInfoFile = (0, _material.styled)('div')({
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
width: '100%',
height: '200px',
borderRadius: '15px',
border: '1px dashed #B2BEDA',
overflow: 'hidden'
});
var WrapperSVG = exports.WrapperSVG = (0, _material.styled)('div')({
background: '#F5F7FB',
borderRadius: '50%',
width: 200,
height: 100,
display: 'flex',
justifyContent: 'center',
alignItems: 'center'
});