import React from 'react'; interface ErrorActionButtonsProps { onRetry?: () => void; onHomeClick: () => void; showRetry?: boolean; homeLabel?: string; } /** * ErrorActionButtons * * Action buttons for error pages (Try Again, Go Home) * Provides consistent styling and behavior. * All navigation callbacks must be provided by the caller. */ export function ErrorActionButtons({ onRetry, onHomeClick, showRetry = false, homeLabel = 'Drive home', }: ErrorActionButtonsProps) { if (showRetry && onRetry) { return (