import { FormHelperText, FormHelperTextProps, HelperText, HelperTextItem, } from "@patternfly/react-core"; import { ExclamationCircleIcon } from "@patternfly/react-icons"; export type FormErrorTextProps = FormHelperTextProps & { message: string; }; export const FormErrorText = ({ message, ...props }: FormErrorTextProps) => { return ( } variant="error"> {message} ); };