ISS Position SPA launched! 🚀

This commit is contained in:
rzmk 2021-12-23 06:18:39 -05:00
parent 0ca5ddc97d
commit a697812315
14 changed files with 28082 additions and 27719 deletions

View file

@ -0,0 +1,14 @@
const ProgressBar = ({ progress }) => {
return (
<div className="w-1/4">
<div className="w-full bg-gray-600 rounded-full h-4 dark:bg-gray-500">
<div
className="bg-gray-200 h-4 rounded-full transition-all ease-in-out"
style={{ width: `${progress}%`, maxWidth: "100%" }}
></div>
</div>
</div>
);
};
export default ProgressBar;