import { Inbox, type LucideIcon } from "lucide-react"; export interface EmptyStateProps { message?: string; icon?: LucideIcon; className?: string; } export function EmptyState({ message = "No data available", icon: Icon = Inbox, className = "" }: EmptyStateProps) { return (
); }