1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-19 01:24:09 +01:00
upscayl/renderer/components/ProgressBar.tsx

22 lines
705 B
TypeScript
Raw Normal View History

2022-11-12 02:09:28 +05:30
import React from "react";
import Animated from "../public/loading.svg";
import Image from "next/image";
2022-12-02 19:51:42 +05:30
function ProgressBar({ progress, doubleUpscaylCounter }) {
2022-11-12 02:09:28 +05:30
return (
<div className="absolute flex h-full w-full flex-col items-center justify-center bg-black/50 backdrop-blur-lg">
<div className="flex flex-col items-center gap-2">
<Image src={Animated} alt="Progress Bar" />
2022-12-02 19:51:42 +05:30
<p className="font-bold">
{doubleUpscaylCounter > 0
? `${progress}\nPass ${doubleUpscaylCounter}`
: `${progress}`}
2022-11-12 02:09:28 +05:30
</p>
2022-12-02 19:51:42 +05:30
<p className="text-sm font-medium">Doing the Upscayl magic...</p>
2022-11-12 02:09:28 +05:30
</div>
</div>
);
}
export default ProgressBar;