import { ArrowRight, CheckCircle2 } from 'lucide-react'; export default function EmptyDocumentState({ status }: { status: string }) { let headerText = 'All done'; let bodyText = 'All documents signed for now.'; let extraText = ''; let showArrow = false; switch (status) { case 'COMPLETED': headerText = 'Nothing here'; bodyText = 'There are no signed documents yet.'; extraText = 'Start by adding a document'; showArrow = true; break; case 'DRAFT': headerText = 'Nothing here'; bodyText = 'There are no drafts yet.'; extraText = 'Start by adding a document'; showArrow = true; break; case 'ALL': headerText = 'Nothing here'; bodyText = 'There are no documents yet.'; extraText = 'Start by adding a document'; showArrow = true; break; default: break; } return (

{headerText}

{bodyText}

{extraText && (

{extraText} {showArrow && }

)}
); }