/** * FavoritesFooter - Footer component for favorites sidebar * Matches HistoryFooter design for consistency */ import { Icons } from '@/components/ui/Icon'; import { Button } from '@/components/ui/Button'; interface FavoritesFooterProps { hasFavorites: boolean; onClearAll: () => void; } export function FavoritesFooter({ hasFavorites, onClearAll }: FavoritesFooterProps) { if (!hasFavorites) return null; return ( ); }