import { ArrowPathIcon } from "@heroicons/react/24/outline"; import { MagnifyingGlassIcon } from "@heroicons/react/20/solid"; interface HistorySearchProps { query: string; refresh: () => void; setQuery: (query: string) => void; } export default function HistorySearch(props: HistorySearchProps) { return (