import { Card, CardContent } from '@heroui/react'; import { Inbox } from 'lucide-react'; type Props = { message?: string; icon?: React.ReactNode; }; export function EmptyState({ message = 'Keine Daten vorhanden', icon }: Props) { return (
{icon || }

{message}

); }