ISS Position SPA launched! 🚀
This commit is contained in:
parent
0ca5ddc97d
commit
a697812315
14 changed files with 28082 additions and 27719 deletions
14
src/components/ProgressBar.js
Normal file
14
src/components/ProgressBar.js
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue