mirror of
https://github.com/get-drexa/drive.git
synced 2025-11-30 21:41:39 +00:00
7 lines
224 B
TypeScript
7 lines
224 B
TypeScript
import { Loader2Icon } from "lucide-react"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
export function LoadingSpinner({ className }: { className?: string }) {
|
|
return <Loader2Icon className={cn("animate-spin size-4", className)} />
|
|
}
|