diff --git a/src/components/user/sso-login-button.tsx b/src/components/user/sso-login-button.tsx index 064e2eb..c1bd0e2 100644 --- a/src/components/user/sso-login-button.tsx +++ b/src/components/user/sso-login-button.tsx @@ -1,6 +1,6 @@ import { signIn } from '@/auth'; -import { IconButton } from '@/components/icon-button'; -import { faOpenid } from '@fortawesome/free-brands-svg-icons'; +import { Button } from '@/components/ui/button'; +import { Fingerprint } from 'lucide-react'; export default function SSOLogin({ provider, @@ -17,14 +17,19 @@ export default function SSOLogin({ await signIn(provider); }} > - - Login with {providerDisplayName} - +
+ +
+ +
+ Login with {providerDisplayName} +
+ ); }