import { Card, CardContent } from '@heroui/react'; import { AlertTriangle, RefreshCw } from 'lucide-react'; type Props = { message?: string; onRetry?: () => void; }; export function ErrorState({ message = 'Ein Fehler ist aufgetreten', onRetry }: Props) { return (

{message}

{onRetry && ( )}
); }