import type { ReactNode } from 'react'; import { IconInbox } from './icons'; interface EmptyStateProps { title: string; description?: string; action?: ReactNode; } export function EmptyState({ title, description, action }: EmptyStateProps) { return (
{title}
{description &&
{description}
}
{action &&
{action}
}
); }