This repository has been archived on 2026-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
2025-03-06 18:43:09 -07:00

19 lines
585 B
JavaScript

import "../index.css"
/**
* Simple loading spinner for the downloads.
* @returns {JSX.Element}
* @constructor
*/
export default function DownloadLoading() {
return (
<div className="absolute size-full flex items-center justify-center">
<div className="fixed inset-0 bg-black opacity-25 blur-lg"></div>
<div
className="animate-spin rounded-full border-blue-500 border-3 border-t-transparent size-6 mx-2">
</div>
<p className="text-lg text-black opacity-90">Preparing files...</p>
</div>
);
};