'use client'; import { Button } from '@/ui/Button'; import { Icon } from '@/ui/Icon'; import { Home, LifeBuoy, RefreshCw } from 'lucide-react'; import React from 'react'; interface RecoveryActionsProps { onRetry: () => void; onHome: () => void; } /** * RecoveryActions * * Provides primary and secondary recovery paths for the user. * Part of the 500 route redesign. */ export function RecoveryActions({ onRetry, onHome }: RecoveryActionsProps) { return (
); }