import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/Alert/alert-group'; import { AlertGroupProps } from './AlertGroup'; import { AlertProps } from '../Alert'; export const AlertGroupInline: React.FunctionComponent = ({ className, children, isToast, isLiveRegion, onOverflowClick, overflowMessage, ...rest }: AlertGroupProps) => ( ); AlertGroupInline.displayName = 'AlertGroupInline';