File size: 576 Bytes
29664cd
9bd4d4a
 
 
 
 
 
 
3b8e8d5
9bd4d4a
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20


interface UploadOverlayProps {
  progress: number
}

export function UploadOverlay({ progress }: UploadOverlayProps) {
  return (
    <div className="absolute inset-0 z-50 flex flex-col items-center justify-center bg-black">
      <div className="text-white/40 text-sm font-medium tracking-[0.2em] uppercase mb-4 text-center">
        Uploading
      </div>
      <div className="text-white text-7xl font-light tracking-tighter drop-shadow-lg tabular-nums text-center">
        {progress}<span className="text-3xl text-white/50 ml-1">%</span>
      </div>
    </div>
  )
}