mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
chore: correct types on component
This commit is contained in:
@ -1,6 +1,10 @@
|
||||
import { ArrowRight, CheckCircle2 } from 'lucide-react';
|
||||
|
||||
export default function EmptyDocumentState({ status }: { status: string }) {
|
||||
import { ExtendedDocumentStatus } from '@documenso/prisma/types/extended-document-status';
|
||||
|
||||
export type EmptyDocumentProps = { status: ExtendedDocumentStatus };
|
||||
|
||||
export default function EmptyDocumentState({ status }: EmptyDocumentProps) {
|
||||
let headerText = 'All done';
|
||||
let bodyText = 'All documents signed for now.';
|
||||
let extraText = '';
|
||||
|
||||
Reference in New Issue
Block a user