import type { LucideIcon } from 'lucide-react' import type { ReactNode } from 'react' interface Props { icon: LucideIcon title: string hint: ReactNode testId?: string className?: string } export function EmptyStateCard({ icon: Icon, title, hint, testId, className = '' }: Props) { return (