Skip to content

Commit

Permalink
fix: login button
Browse files Browse the repository at this point in the history
  • Loading branch information
amjed-ali-k committed Oct 10, 2023
1 parent a08279a commit e1126f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/home/SignInButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import React from "react";
import { Button } from "../ui/button";
import Link from "next/link";
import { Github, Loader2 } from "lucide-react";
import { Github, Loader2, LogIn } from "lucide-react";
import { useState } from "react";

function SignInButton() {
Expand Down Expand Up @@ -46,7 +46,7 @@ function SignInButton() {
{loading || status === "loading" ? (
<Loader2 className="h-5 w-5 animate-spin" />
) : (
<Github className="mr-1 h-4 w-4 stroke-[3]" />
<LogIn className="mr-1 h-4 w-4 stroke-[3]" />
)}
Login
</span>
Expand Down

0 comments on commit e1126f7

Please sign in to comment.