CoolFace
Apppublic

eddyencode/deepsitev3

sourceHugging Facemitupdated 1y agoView on Hugging Face
1likes
loading.tsx29 linesDownload Raw Back to loading
1function Loading() {2  return (3    <div className="absolute left-0 top-0 h-full w-full flex items-center justify-center bg-white/30 z-20">4      <svg5        className="size-5 animate-spin text-white"6        xmlns="http://www.w3.org/2000/svg"7        fill="none"8        viewBox="0 0 24 24"9      >10        <circle11          className="opacity-25"12          cx="12"13          cy="12"14          r="10"15          stroke="currentColor"16          strokeWidth="4"17        ></circle>18        <path19          className="opacity-75"20          fill="currentColor"21          d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"22        ></path>23      </svg>24    </div>25  );26}27 28export default Loading;29