latex-ub/services/web/frontend/js/features/review-panel-new/components/review-panel-empty-state.tsx
2025-05-05 12:24:05 +00:00

22 lines
645 B
TypeScript

import MaterialIcon from '@/shared/components/material-icon'
import { useTranslation } from 'react-i18next'
function ReviewPanelEmptyState() {
const { t } = useTranslation()
return (
<div className="review-panel-empty-state">
<div className="review-panel-empty-state-inner">
<div className="review-panel-empty-state-comment-icon">
<MaterialIcon type="question_answer" />
</div>
<p>
<strong>{t('no_comments_or_suggestions')}</strong>
</p>
<p>{t('no_one_has_commented_or_left_any_suggestions_yet')}</p>
</div>
</div>
)
}
export default ReviewPanelEmptyState