sheer / src /components /ui /spinner.tsx
barreloflube's picture
feat: add Hugging Face and Clerk integrations with enhanced configuration
136f9cf
raw
history blame
300 Bytes
import { cn } from "@/lib/utils";
import { Loader2 } from "lucide-react";
export function Spinner({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
return (
<div className={cn("animate-spin", className)} {...props}>
<Loader2 className="h-full w-full" />
</div>
);
}