Components
Loading preview...
Here is Pulsating Loader component
npx shadcn@latest add https://21st.dev/r/mvp_Subha/pulsating-loaderexport default function BounceLoader() {
return (
<div className="flex items-center justify-center space-x-2">
<div className="bg-primary h-5 w-5 animate-bounce rounded-full [animation-delay:-0.3s]"></div>
<div className="bg-primary h-5 w-5 animate-bounce rounded-full [animation-delay:-0.13s]"></div>
<div className="bg-primary h-5 w-5 animate-bounce rounded-full"></div>
</div>
);
}