import { Box, Card, Typography } from '@mui/material' import { Lock } from 'lucide-react' interface Props { title?: string message?: string } export function MatchCardRestrictedState({ title, message }: Props) { return ( {title ?? 'Zugriff eingeschränkt'} {message ?? 'Sie haben keine Berechtigung, dieses Match einzusehen.'} ) }