'use client'; import { Button } from '@/ui/Button'; import { Icon } from '@/ui/Icon'; import { Stack } from '@/ui/primitives/Stack'; import { Home, RefreshCw } from 'lucide-react'; 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 ( ); }