File size: 338 Bytes
4f163ba |
1 2 3 4 5 6 7 8 9 10 11 12 |
import React from 'react';
const LoadingSpinner: React.FC = () => {
return (
<div className="flex items-center justify-center">
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-blue-600"></div>
<span className="ml-2 text-gray-600">Loading...</span>
</div>
);
};
export default LoadingSpinner; |