Skip to content

Commit

Permalink
✏️ Fixed icons import hehe
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario-SO committed Jul 30, 2024
1 parent f5a7d90 commit d1cf739
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/app/components/misc/SignInUserButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Button } from '@/components/ui/button';
import { useLogin, useLogout, usePrivy } from '@privy-io/react-auth';
import { deleteSession, storeSession } from '@/lib/actions/auth';
import { apiUrl } from '@/lib/utils/utils';
import { ExternalLink, Loader2, UserX } from 'lucide-react';
import { LuExternalLink, LuLoader2, LuUserX } from 'react-icons/lu';
import React, { useEffect, useState } from 'react';
import {
Dialog,
Expand Down Expand Up @@ -109,7 +109,7 @@ export const SignInUserButton = ({
disabled={!ready || isLoading}
>
{!ready || isLoading ? (
<Loader2 className="h-4 w-4 animate-spin" />
<LuLoader2 className="h-4 w-4 animate-spin" />
) : authenticated ? (
'Sign Out'
) : (
Expand All @@ -120,7 +120,7 @@ export const SignInUserButton = ({
<DialogContent className="sm:max-w-[425px]">
<DialogHeader>
<DialogTitle className="flex items-center gap-2 text-xl">
<UserX className="h-6 w-6 text-destructive" />
<LuUserX className="h-6 w-6 text-destructive" />
User Not Found
</DialogTitle>
</DialogHeader>
Expand All @@ -141,7 +141,7 @@ export const SignInUserButton = ({
rel="noopener noreferrer"
>
Create Account
<ExternalLink className="h-4 w-4" />
<LuExternalLink className="h-4 w-4" />
</Link>
</Button>
</DialogFooter>
Expand Down

0 comments on commit d1cf739

Please sign in to comment.