import { Box, Button, Typography } from '@mui/material' import { Lock } from 'lucide-react' interface UnauthorizedStateProps { message?: string onLogin?: () => void } export function UnauthorizedState({ message, onLogin }: UnauthorizedStateProps) { return ( Nicht berechtigt {message && ( {message} )} {onLogin && ( )} ) }