/* eslint-disable */ // @ts-nocheck import { FormGroup } from "../../../shared/@patternfly/react-core"; import { PropsWithChildren } from "react"; import { useTranslation } from "react-i18next"; import { HelpItem } from "../../../shared/keycloak-ui-shared"; export type FieldProps = { label: string; field: string; isReadOnly?: boolean }; export type FormGroupFieldProps = { label: string }; export const FormGroupField = ({ label, children, }: PropsWithChildren) => { const { t } = useTranslation(); return ( } > {children} ); };