mirror of
https://github.com/documenso/documenso.git
synced 2025-11-17 18:21:32 +10:00
chore: correct types on component
This commit is contained in:
committed by
Mythie
parent
4879d2360b
commit
73a9213088
@ -1,6 +1,10 @@
|
|||||||
import { ArrowRight, CheckCircle2 } from 'lucide-react';
|
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 headerText = 'All done';
|
||||||
let bodyText = 'All documents signed for now.';
|
let bodyText = 'All documents signed for now.';
|
||||||
let extraText = '';
|
let extraText = '';
|
||||||
|
|||||||
Reference in New Issue
Block a user