import { type LucideIcon, Construction } from 'lucide-react' interface Props { icon?: LucideIcon title: string hint?: string } // §6.0.5 四态评审 — empty 状态:图示 + 引导,而不是一句"暂无数据" export function EmptyState({ icon: Icon = Construction, title, hint }: Props) { return (

{title}

{hint &&

{hint}

}
) }