@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
18 lines • 625 B
JavaScript
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
var _excluded = ["children", "gridColumns", "gap"];
import React from 'react';
import { GridCardList } from './styled';
import { jsx as _jsx } from "react/jsx-runtime";
export var GridCards = function GridCards(_ref) {
var children = _ref.children,
gridColumns = _ref.gridColumns,
gap = _ref.gap,
props = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/_jsx(GridCardList, Object.assign({
component: "section",
gridColumns: gridColumns,
gap: gap
}, props, {
children: children
}));
};