@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
25 lines (24 loc) • 918 B
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.GridCards = void 0;
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
var _react = _interopRequireDefault(require("react"));
var _styled = require("./styled");
var _jsxRuntime = require("react/jsx-runtime");
var _excluded = ["children", "gridColumns", "gap"];
var GridCards = exports.GridCards = function GridCards(_ref) {
var children = _ref.children,
gridColumns = _ref.gridColumns,
gap = _ref.gap,
props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_styled.GridCardList, Object.assign({
component: "section",
gridColumns: gridColumns,
gap: gap
}, props, {
children: children
}));
};