pronounsfu/frontend/components/Loading.tsx

11 lines
308 B
TypeScript
Raw Normal View History

2022-09-15 15:49:04 -07:00
import { ThreeDots } from "react-bootstrap-icons";
export default function Loading() {
return (
<div className="flex flex-col pt-32 items-center">
<ThreeDots size={64} className="animate-bounce" aria-hidden="true" />
<span className="font-bold text-xl">Loading...</span>
</div>
);
}