@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
24 lines (23 loc) • 619 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ButtonContainer = void 0;
var _material = require("@mui/material");
var ButtonContainer = exports.ButtonContainer = (0, _material.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'
};
});