pollo/app/_components/LoadingIndicator.tsx

10 lines
216 B
TypeScript
Raw Normal View History

2023-09-06 13:00:00 -06:00
const LoadingIndicator = () => {
2023-09-01 20:38:27 -06:00
return (
<div className="flex items-center justify-center">
<span className="loading loading-dots loading-lg"></span>
</div>
);
2023-09-01 19:43:15 -06:00
};
2023-09-06 13:00:00 -06:00
export default LoadingIndicator;