'use client'; interface SigningProgressBarProps { total: number; signed: number; onJumpToNext: () => void; onSubmit: () => void; submitting: boolean; } export function SigningProgressBar({ total, signed, onJumpToNext, onSubmit, submitting, }: SigningProgressBarProps) { const allSigned = signed >= total; return (
{signed} of {total} signature{total !== 1 ? 's' : ''} complete
{!allSigned && ( )}
); }