import type {LucideIcon} from 'lucide-react'; import type {ReactNode} from 'react'; interface EmptyStateProps { icon: LucideIcon; title: string; description: string; action?: ReactNode; } export function EmptyState({icon: Icon, title, description, action}: EmptyStateProps) { return (
{description}
{action}