feat: Обновить компоненты интерфейса, добавив новый заголовок страницы и состояние пустого контента в менеджерах ASNs, Domains и IPRanges, а также улучшить стили для адаптивного отображения
Publish Fast Tabler Docker image / build-and-push-fast (push) Successful in 2m0s

This commit is contained in:
2025-08-27 17:16:46 +07:00
parent 001b4d9d98
commit 434462f633
13 changed files with 255 additions and 71 deletions
+31
View File
@@ -0,0 +1,31 @@
import React from 'react'
function EmptyState({
icon: Icon,
title = 'Нет данных',
description,
action,
}) {
return (
<div className="empty">
<div className="empty-icon">
{Icon ? <Icon size={48} className="text-muted" /> : null}
</div>
<p className="empty-title">{title}</p>
{description && (
<p className="empty-subtitle text-muted">
{description}
</p>
)}
{action && (
<div className="empty-action">
{action}
</div>
)}
</div>
)
}
export default EmptyState