A pulsing circle loading indicator that smoothly scales and fades to signal background activity.
import { LoaderPulse } from "@/components/ui/loaders-pulse"; export default function Default() { return ( <div className="flex min-h-[300px] w-full items-center justify-center bg-background text-foreground"> <LoaderPulse size={80} /> </div> ); }