Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
1import Skeleton from "@/components/Shared/Skeleton";
2
3const NotificationShimmer = () => {
4 return (
5 <div className="flex items-start justify-between p-5">
6 <div className="w-4/5 space-y-4">
7 <div className="flex items-center space-x-3">
8 <Skeleton className="size-6 rounded-lg" />
9 <Skeleton className="size-8 rounded-full" />
10 </div>
11 <div className="ml-9 space-y-2.5">
12 <Skeleton className="h-3 w-4/5 rounded-lg" />
13 <Skeleton className="h-3 w-3/5 rounded-lg" />
14 </div>
15 </div>
16 <div className="text-[12px] text-gray-400">
17 <Skeleton className="h-3 w-16 rounded-lg" />
18 </div>
19 </div>
20 );
21};
22
23export default NotificationShimmer;