import { Button } from "@/components/ui/button"; import { RefreshCw } from "lucide-react"; interface ResetButtonProps { onReset: () => void; } export const ResetButton = ({ onReset }: ResetButtonProps) => { return (