@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
11 lines • 507 B
TypeScript
import * as React from 'react';
export interface FormFieldGroupProps extends Omit<React.HTMLProps<HTMLDivElement>, 'label'> {
/** Anything that can be rendered as form field group content. */
children?: React.ReactNode;
/** Additional classes added to the form field group. */
className?: string;
/** Form field group header */
header?: React.ReactNode;
}
export declare const FormFieldGroup: React.FunctionComponent<FormFieldGroupProps>;
//# sourceMappingURL=FormFieldGroup.d.ts.map