@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
20 lines • 463 B
JavaScript
import { styled } from '@mui/material';
export var WrapperInfoFile = styled('div')({
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
width: '100%',
height: '200px',
borderRadius: '15px',
border: '1px dashed #B2BEDA',
overflow: 'hidden'
});
export var WrapperSVG = styled('div')({
background: '#F5F7FB',
borderRadius: '50%',
width: 200,
height: 100,
display: 'flex',
justifyContent: 'center',
alignItems: 'center'
});