import { BoxSelectIcon } from 'lucide-react'; import type { LucideIcon } from 'lucide-react'; interface FullPageEmptyStateProps { icon?: LucideIcon; title: string; children: React.ReactNode; } export function FullPageEmptyState({ icon: Icon = BoxSelectIcon, title, children, }: FullPageEmptyStateProps) { return (