diff --git a/apps/console2/src/components/documentSigning/ProgressBar.tsx b/apps/console2/src/components/documentSigning/ProgressBar.tsx new file mode 100644 index 000000000..a9253b375 --- /dev/null +++ b/apps/console2/src/components/documentSigning/ProgressBar.tsx @@ -0,0 +1,15 @@ +interface ProgressBarProps { + value: number; + className?: string; +} + +export function ProgressBar({ value, className }: ProgressBarProps) { + return ( +
+ {__("Please wait while we fetch your documents...")} +
+{error}
+ ++ {__("There are no documents requiring your signature at this time.")} +
++ {__("From")} {signingData.requesterName} {__("at")} {signingData.requesterOrganization} +
+ ++ {__("Document")} {currentDocIndex + 1} {__("of")} {signingData.documents.length} +
+