mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-17 12:20:04 +00:00
- Mobile responsive - new toast design - web document render issue fix - posthog analytics - ui improvements
6 lines
208 B
TypeScript
6 lines
208 B
TypeScript
import { cn } from "@lib/utils"
|
|
import { Loader2 } from "lucide-react"
|
|
|
|
export function Spinner({ className }: { className?: string }) {
|
|
return <Loader2 className={cn("size-4 animate-spin", className)} />
|
|
}
|