import { ReactNode } from 'react'; interface EmptyStateProps { icon: ReactNode; title: string; description: string; actionLabel?: string; onAction?: () => void; } export default function EmptyState({ icon, title, description, actionLabel, onAction }: EmptyStateProps) { return (
{description}
{actionLabel && onAction && ( )}