A shape-shifting loading spinner that continuously morphs between rounded and square forms while rotating and scaling.
import { LoaderMorphing } from "@/components/ui/loaders-morphing"; export default function Default() { return ( <div className="flex min-h-[300px] w-full items-center justify-center"> <LoaderMorphing size={48} className="text-primary" color="currentColor" /> </div> ); }