import { Alert, Typography } from '@mui/material' import { AlertCircle } from 'lucide-react' interface SourceErrorPanelProps { errorState: string } export function SourceErrorPanel({ errorState }: SourceErrorPanelProps) { return ( } sx={{ mb: 2, fontSize: '0.8rem', '& .MuiAlert-message': { width: '100%' } }} > Fehlerzustand {errorState} ) }