import React from "react";
interface RefreshButtonProps {
onClick: () => void;
loading: boolean;
autoRefreshing?: boolean;
title?: string;
ariaLabel?: string;
small?: boolean;
disabled?: boolean;
}
export default function RefreshButton({
onClick,
loading,
autoRefreshing = false,
title = "Refresh",
ariaLabel = "Refresh",
small = false,
disabled = false,
}: RefreshButtonProps) {
const size = small ? 24 : 40;
const iconSize = small ? 14 : 22;
return (
<>
>
);
}