'use client'; import React from 'react'; import { RefreshCw, Home } from 'lucide-react'; import { Box } from '@/ui/Box'; import { Button } from '@/ui/Button'; import { Icon } from '@/ui/Icon'; interface ErrorRecoveryActionsProps { onRetry: () => void; onHome: () => void; } /** * ErrorRecoveryActions * * Semantic component for error recovery buttons. * Follows "Precision Racing Minimal" theme. */ export function ErrorRecoveryActions({ onRetry, onHome }: ErrorRecoveryActionsProps) { return ( ); }