mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-05 21:32:02 -06:00
17 lines
511 B
TypeScript
17 lines
511 B
TypeScript
import { TailSpin } from "react-loader-spinner";
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className="min-h-screen px-4 py-16 bg-white sm:px-6 sm:py-24 md:grid md:place-items-center lg:px-8">
|
|
<div className="mx-auto max-w-max">
|
|
<main>
|
|
<div className="flex justify-center">
|
|
<TailSpin color="#1f2937" height={30} width={30} />
|
|
</div>
|
|
<p className="mt-5 text-sm text-ui-gray-dark">Loading...</p>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|