@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
17 lines • 361 B
JavaScript
import { styled } from '@mui/material';
export var WrapperComponent = styled('div')({
position: 'relative',
width: '100%',
height: '100%'
});
export var Mark = styled('div')(function (_ref) {
var width = _ref.width,
height = _ref.height;
return {
position: 'absolute',
bottom: 0,
right: 0,
width: width,
height: height
};
});