mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-17 09:43:43 +08:00
24 lines
772 B
TypeScript
24 lines
772 B
TypeScript
/**
|
|
* FavoritesEmptyState - Empty state component for favorites sidebar
|
|
* Matches HistoryEmptyState design for consistency
|
|
*/
|
|
|
|
import { Icons } from '@/components/ui/Icon';
|
|
|
|
export function FavoritesEmptyState() {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center h-full text-center py-12">
|
|
<Icons.Inbox
|
|
size={64}
|
|
className="text-[var(--text-color-secondary)] opacity-50 mb-4"
|
|
/>
|
|
<p className="text-[var(--text-color-secondary)] text-lg">
|
|
暂无收藏
|
|
</p>
|
|
<p className="text-[var(--text-color-secondary)] text-sm mt-2 opacity-70">
|
|
点击视频上的心形按钮即可收藏
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|