🔧 chore: add handle oauth endpoint login

This commit is contained in:
2026-01-07 23:28:07 +07:00
parent 28cd3178b9
commit 77eeaf1adc
4 changed files with 38 additions and 4 deletions

View File

@ -0,0 +1,10 @@
import { cn } from "@/shared/libs/shadcn/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 }