@pantheon-systems/design-toolkit-react
Version:
Pantheon's React Design Toolkit
18 lines (15 loc) • 438 B
JavaScript
import PropTypes from 'prop-types';
import { jsx } from 'react/jsx-runtime';
var PanelGroup = function PanelGroup(_ref) {
var children = _ref.children;
return /*#__PURE__*/jsx("div", {
className: "mb-8 rounded panel-group",
children: children
});
};
PanelGroup.propTypes = {
children: PropTypes.node.isRequired
};
var PanelGroup$1 = PanelGroup;
export { PanelGroup$1 as default };
//# sourceMappingURL=PanelGroup.js.map