@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
18 lines • 469 B
JavaScript
import { styled } from '@mui/material';
export var ButtonContainer = styled('div', {
shouldForwardProp: function shouldForwardProp(props) {
return props !== 'footerDirection';
}
})(function (props) {
return {
backgroundColor: '#fff',
display: 'flex',
flexDirection: props.footerDirection || 'row',
gap: '10px',
alignItems: 'center',
width: '100%',
maxWidth: '100%',
order: props.order,
marginTop: '12px !important'
};
});