interface ExplorerRetryAlertProps { message: string onRetry?: () => void retryLabel?: string className?: string } export default function ExplorerRetryAlert({ message, onRetry, retryLabel = 'Retry', className = '', }: ExplorerRetryAlertProps) { return (
{message}
{onRetry ? ( ) : null}