You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.8 KiB
JavaScript
66 lines
2.8 KiB
JavaScript
"use strict";
|
|
'use client';
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
var _createContainer = _interopRequireDefault(require("./createContainer"));
|
|
/**
|
|
*
|
|
* Demos:
|
|
*
|
|
* - [Container (Material UI)](https://mui.com/material-ui/react-container/)
|
|
* - [Container (MUI System)](https://mui.com/system/react-container/)
|
|
*
|
|
* API:
|
|
*
|
|
* - [Container API](https://mui.com/system/api/container/)
|
|
*/
|
|
const Container = (0, _createContainer.default)();
|
|
process.env.NODE_ENV !== "production" ? Container.propTypes /* remove-proptypes */ = {
|
|
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
|
|
// └─────────────────────────────────────────────────────────────────────┘
|
|
/**
|
|
* @ignore
|
|
*/
|
|
children: _propTypes.default.node,
|
|
/**
|
|
* Override or extend the styles applied to the component.
|
|
*/
|
|
classes: _propTypes.default.object,
|
|
/**
|
|
* The component used for the root node.
|
|
* Either a string to use a HTML element or a component.
|
|
*/
|
|
component: _propTypes.default.elementType,
|
|
/**
|
|
* If `true`, the left and right padding is removed.
|
|
* @default false
|
|
*/
|
|
disableGutters: _propTypes.default.bool,
|
|
/**
|
|
* Set the max-width to match the min-width of the current breakpoint.
|
|
* This is useful if you'd prefer to design for a fixed set of sizes
|
|
* instead of trying to accommodate a fully fluid viewport.
|
|
* It's fluid by default.
|
|
* @default false
|
|
*/
|
|
fixed: _propTypes.default.bool,
|
|
/**
|
|
* Determine the max-width of the container.
|
|
* The container width grows with the size of the screen.
|
|
* Set to `false` to disable `maxWidth`.
|
|
* @default 'lg'
|
|
*/
|
|
maxWidth: _propTypes.default /* @typescript-to-proptypes-ignore */.oneOfType([_propTypes.default.oneOf(['xs', 'sm', 'md', 'lg', 'xl', false]), _propTypes.default.string]),
|
|
/**
|
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
*/
|
|
sx: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object, _propTypes.default.bool])), _propTypes.default.func, _propTypes.default.object])
|
|
} : void 0;
|
|
var _default = exports.default = Container; |