/** * Header for search history dropdown */ import { Icons } from '@/components/ui/Icon'; interface SearchHistoryHeaderProps { onClearAll: () => void; } export function SearchHistoryHeader({ onClearAll }: SearchHistoryHeaderProps) { return (
搜索历史
); }