import { Home, RefreshCw } from 'lucide-react'; import { Box } from './Box'; import { Button } from './Button'; export interface ErrorActionButtonsProps { onRetry?: () => void; onGoHome?: () => void; } export const ErrorActionButtons = ({ onRetry, onGoHome }: ErrorActionButtonsProps) => { return ( {onRetry && ( )} {onGoHome && ( )} ); };