import { Box, Button, Typography } from '@mui/material' import { AlertTriangle, RotateCcw } from 'lucide-react' interface Props { message: string onRetry: () => void } export function NeedBuilderErrorState({ message, onRetry }: Props) { return ( Analyse fehlgeschlagen {message} ) }