@ansible/ansible-ui-framework
Version:
A framework for building applications using PatternFly.
16 lines (15 loc) • 511 B
TypeScript
import { ReactNode } from 'react';
export interface PageFormGroupProps {
fieldId?: string;
icon?: ReactNode;
label?: string;
labelHelp?: string | string[] | ReactNode;
labelHelpTitle?: string;
isRequired?: boolean;
additionalControls?: ReactNode;
children?: ReactNode;
helperText?: string;
helperTextInvalid?: string | string[] | false;
fullWidth?: boolean;
}
export declare function PageFormGroup(props: PageFormGroupProps): import("react/jsx-runtime").JSX.Element;