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