This commit is contained in:
2026-05-31 21:32:28 +02:00
parent 95916cedde
commit 84fb410316
63 changed files with 7596 additions and 11 deletions

View File

@@ -0,0 +1,10 @@
import { cn } from "@/lib/utils"
import { Loader2Icon } from "lucide-react"
function Spinner({ className, ...props }: React.ComponentProps<"svg">) {
return (
<Loader2Icon role="status" aria-label="Loading" className={cn("size-4 animate-spin", className)} {...props} />
)
}
export { Spinner }