9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
const LoadingIndicator = () => {
|
|
return (
|
|
<div className="flex items-center justify-center">
|
|
<span className="loading loading-dots loading-lg"></span>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default LoadingIndicator;
|