import type { ComponentType } from 'react' type EmptyStateProps = { icon: ComponentType<{ className?: string }> title: string hint?: string } // Shared empty-state placeholder: icon in a muted circle, title, optional hint. export default function EmptyState({ icon: Icon, title, hint }: EmptyStateProps) { return (

{title}

{hint &&

{hint}

}
) }