mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
13 lines
437 B
TypeScript
13 lines
437 B
TypeScript
export function Ping() {
|
|
return (
|
|
<div className="relative">
|
|
<div className="absolute -left-4 top-1">
|
|
<span className="flex h-[11px] w-[11px]">
|
|
<span className="absolute inline-flex h-full w-full animate-ping rounded-full bg-vercel-pink opacity-75"></span>
|
|
<span className="relative inline-flex h-[11px] w-[11px] rounded-full bg-vercel-pink"></span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|