import type { LucideIcon } from 'lucide-react'; type FileTreeEmptyStateProps = { icon: LucideIcon; title: string; description: string; }; export default function FileTreeEmptyState({ icon: Icon, title, description }: FileTreeEmptyStateProps) { return (

{title}

{description}

); }