mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-28 05:25:33 +00:00
6 lines
211 B
TypeScript
6 lines
211 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)} />;
|
|
}
|