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