mirror of
https://github.com/get-drexa/drive.git
synced 2025-12-01 05:51: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)} />
|
||
|
|
}
|