@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
13 lines • 725 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.FormFieldGroup = void 0;
const tslib_1 = require("tslib");
const jsx_runtime_1 = require("react/jsx-runtime");
const InternalFormFieldGroup_1 = require("./InternalFormFieldGroup");
const FormFieldGroup = (_a) => {
var { children, className, header } = _a, props = tslib_1.__rest(_a, ["children", "className", "header"]);
return ((0, jsx_runtime_1.jsx)(InternalFormFieldGroup_1.InternalFormFieldGroup, Object.assign({ className: className, header: header }, props, { children: children })));
};
exports.FormFieldGroup = FormFieldGroup;
exports.FormFieldGroup.displayName = 'FormFieldGroup';
//# sourceMappingURL=FormFieldGroup.js.map
;