chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:37:47 +08:00
commit 7653f56fed
1422 changed files with 359026 additions and 0 deletions
@@ -0,0 +1,32 @@
.root {
@apply inline-flex text-center items-center leading-7;
}
.root span {
@apply bg-zinc-400 rounded-full h-2 w-2;
animation-name: blink;
animation-duration: 1.4s;
animation-iteration-count: infinite;
animation-fill-mode: both;
margin: 0 2px;
}
.root span:nth-of-type(2) {
animation-delay: 0.2s;
}
.root span:nth-of-type(3) {
animation-delay: 0.4s;
}
@keyframes blink {
0% {
opacity: 0.2;
}
20% {
opacity: 1;
}
100% {
opacity: 0.2;
}
}
@@ -0,0 +1,14 @@
import s from "./LoadingDots.module.css";
import cn from "classnames";
const LoadingDots = ({ className }: { className?: string }) => {
return (
<span className={cn(s.root, className)}>
<span />
<span />
<span />
</span>
);
};
export default LoadingDots;
@@ -0,0 +1 @@
export { default } from "./LoadingDots";