Files
Travel-policy-/frontend/src/components/Loading.jsx
ANUJ7MADKE cd43f0e98e code base
2025-07-13 22:49:55 +05:30

14 lines
347 B
JavaScript

import React from "react";
import { TbLoader3 } from "react-icons/tb";
function Loading() {
return (
<div className="flex flex-col justify-center items-center h-full animate-pulse">
<TbLoader3 className="animate-spin text-xl size-24 text-red-700" />
<p className="mt-2">Loading...</p>
</div>
);
}
export default Loading;