We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9884346 commit a8e04b1Copy full SHA for a8e04b1
1 file changed
client/src/components/Loader.jsx
@@ -2,14 +2,17 @@ import React from 'react';
2
3
const Loader = ({ size = 16 }) => {
4
return (
5
- <div className="flex justify-center items-center py-16">
+ <div className="flex flex-col justify-center items-center py-16 space-y-4">
6
<div
7
className="loader ease-linear rounded-full border-8 border-t-8 border-gray-200"
8
style={{
9
width: `${size * 4}px`,
10
height: `${size * 4}px`,
11
}}
12
></div>
13
+ <p className="text-teal-600 font-medium text-lg">
14
+ Render is loading, please wait...
15
+ </p>
16
</div>
17
);
18
};
0 commit comments