import React from 'react'; import { t } from '@lingui/macro'; import { withI18n } from '@lingui/react'; import { Title, EmptyState, EmptyStateIcon, EmptyStateBody } from '@patternfly/react-core'; import { CubesIcon } from '@patternfly/react-icons'; const ContentEmpty = ({ i18n, title = '', message = '' }) => ( {title || i18n._(t`No items found.`)} {message} ); export { ContentEmpty as _ContentEmpty }; export default withI18n()(ContentEmpty);