import React from 'react'; import type { LucideIcon } from 'lucide-react'; interface EmptyStateProps { icon: LucideIcon; title: string; description: string; actionLabel?: string; onAction?: () => void; } export default function EmptyState({ icon: Icon, title, description, actionLabel, onAction, }: EmptyStateProps) { return (

{title}

{description}

{actionLabel && onAction && ( )}
); }