import { Button } from "@/components/ui/button"; import { AlertCircle } from "lucide-react"; export function EmptyState({ title = 'No data found', description = 'There are currently no items to display', action }: { title?: string; description?: string; action?: React.ReactNode; }) { return (
{description}
{action &&