import * as React from 'react'; import { css } from '@patternfly/react-styles'; export interface FormAlertProps extends React.HTMLProps { /** An inline PatternFly Alert. */ children?: React.ReactNode; /** Additional classes added to the FormGroup. */ className?: string; } export const FormAlert: React.FunctionComponent = ({ children = null, className = '', ...props }: FormAlertProps) => ( // There are currently no associated styles with the pf-v5-c-form_alert class. // Therefore, it does not exist in react-styles
{children}
); FormAlert.displayName = 'FormAlert';