this repo has no description
1export function Ping() {
2 return (
3 <div className="relative">
4 <div className="absolute -left-4 top-1">
5 <span className="flex h-[11px] w-[11px]">
6 <span className="absolute inline-flex h-full w-full animate-ping rounded-full bg-vercel-pink opacity-75"></span>
7 <span className="relative inline-flex h-[11px] w-[11px] rounded-full bg-vercel-pink"></span>
8 </span>
9 </div>
10 </div>
11 );
12}