blue-react 8.5.0-beta.3 → 8.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = SlimContainer;
7
+
8
+ var _react = _interopRequireDefault(require("react"));
9
+
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+
12
+ /**
13
+ * Shortcut for a combination using Bootstrap's Grid System to create a slim responsive container.
14
+ */
15
+ function SlimContainer(_ref) {
16
+ var children = _ref.children,
17
+ className = _ref.className,
18
+ innerClassName = _ref.innerClassName;
19
+ return /*#__PURE__*/_react.default.createElement("div", {
20
+ className: "row " + (className || "")
21
+ }, /*#__PURE__*/_react.default.createElement("div", {
22
+ className: "col-md-6 col-lg-4 " + (innerClassName || "")
23
+ }, children));
24
+ }