import type React from 'react'; import type { LucideIcon } from 'lucide-react'; import { cn } from '#utils'; export type DataTableEmptyStateProps = { className?: string; description?: string; icon?: LucideIcon; title: string; }; export const DataTableEmptyState: React.FC = ({ className, description, icon: Icon, title }) => { return (
{Icon && }

{title}

{description &&

{description}

}
); };