adding sub text and skeleton loader

This commit is contained in:
Arjun Patel
2022-01-17 15:23:55 -08:00
parent 16795b3bc3
commit c58890ee10
4 changed files with 101 additions and 6 deletions
+11
View File
@@ -0,0 +1,11 @@
export default function SkeletonLoader() {
return (
<div className="w-full h-24 flex animate-pulse flex-row items-center justify-center space-x-5">
<div className="w-12 bg-gray-300 h-12 rounded-full "></div>
<div className="flex flex-col space-y-3">
<div className="w-60 bg-gray-300 h-6 rounded-md "></div>
<div className="w-40 bg-gray-300 h-6 rounded-md "></div>
</div>
</div>
);
}