@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
25 lines • 780 B
JavaScript
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
var _excluded = ["children"],
_excluded2 = ["sx"];
import React from 'react';
import { Box } from '@mui/material';
import { jsx as _jsx } from "react/jsx-runtime";
export var BoxLanding = function BoxLanding(_ref) {
var children = _ref.children,
props = _objectWithoutProperties(_ref, _excluded);
var sx = props.sx,
rest = _objectWithoutProperties(props, _excluded2);
return /*#__PURE__*/_jsx(Box, Object.assign({
sx: Object.assign({
alignItems: 'flex-start',
display: 'flex',
flexDirection: 'column',
gap: '15px',
height: '100%',
justifyContent: 'center',
width: '100%'
}, sx)
}, rest, {
children: children
}));
};