import { Icons } from '@/components/ui/Icon'; import { Button } from '@/components/ui/Button'; interface HistoryFooterProps { hasHistory: boolean; onClearAll: () => void; } export function HistoryFooter({ hasHistory, onClearAll }: HistoryFooterProps) { if (!hasHistory) return null; return ( ); }