import type { LucideIcon } from 'lucide-react'; import { Loader2Icon } from 'lucide-react'; import { FullPageEmptyState } from './full-page-empty-state'; const FullPageLoadingState = ({ title = 'Fetching...', description = 'Please wait while we fetch your data...', }: { title?: string; description?: string }) => { return ( ( )) as LucideIcon } /> ); }; export default FullPageLoadingState;