mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-13 15:53:44 +08:00
15 lines
435 B
TypeScript
15 lines
435 B
TypeScript
/**
|
|
* Empty state for search history dropdown
|
|
*/
|
|
|
|
import { Icons } from '@/components/ui/Icon';
|
|
|
|
export function SearchHistoryEmptyState() {
|
|
return (
|
|
<div className="search-history-empty">
|
|
<Icons.Clock size={32} className="text-[var(--text-color-secondary)] mx-auto mb-2 opacity-50" />
|
|
<span className="text-sm text-[var(--text-color-secondary)]">暂无搜索历史</span>
|
|
</div>
|
|
);
|
|
}
|