Components
A row of three dots that bounce in sequence to indicate a loading state, animated with Motion.
Loading preview...
import DotLoaderMotion from "@/components/ui/dot-loader-motion";
export default function DotLoaderMotionDemo() {
return (
<div className="flex min-h-[300px] w-full items-center justify-center rounded-lg bg-background text-foreground">
<DotLoaderMotion />
</div>
);
}