import { ServerCrashIcon } from 'lucide-react'; import { FullPageEmptyState } from './full-page-empty-state'; export const FullPageErrorState = ({ title = 'Error...', description = 'Something went wrong...', children, }: { title?: string; description?: string; children?: React.ReactNode; }) => { return ( {description} {children &&
{children}
}
); };