@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
13 lines • 522 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
var _excluded = ["children"];
import React from 'react';
import { Box } from '@mui/material';
import { jsx as _jsx } from "react/jsx-runtime";
export var BoxContainer = function BoxContainer(_ref) {
var children = _ref.children,
props = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/_jsx(Box, _extends({}, props, {
children: children
}));
};