diff --git a/packages/frontend/core/src/components/affine/auth/oauth.tsx b/packages/frontend/core/src/components/affine/auth/oauth.tsx
index e109e7a6de..1de97d7ad5 100644
--- a/packages/frontend/core/src/components/affine/auth/oauth.tsx
+++ b/packages/frontend/core/src/components/affine/auth/oauth.tsx
@@ -3,7 +3,7 @@ import { ServerService } from '@affine/core/modules/cloud';
import { UrlService } from '@affine/core/modules/url';
import { OAuthProviderType } from '@affine/graphql';
import track from '@affine/track';
-import { GithubIcon, GoogleDuotoneIcon } from '@blocksuite/icons/rc';
+import { GithubIcon, GoogleIcon, LockIcon } from '@blocksuite/icons/rc';
import { useLiveData, useService } from '@toeverything/infra';
import { type ReactElement, type SVGAttributes, useCallback } from 'react';
@@ -14,7 +14,7 @@ const OAuthProviderMap: Record<
}
> = {
[OAuthProviderType.Google]: {
- icon: ,
+ icon: ,
},
[OAuthProviderType.GitHub]: {
@@ -22,8 +22,7 @@ const OAuthProviderMap: Record<
},
[OAuthProviderType.OIDC]: {
- // TODO(@catsjuice): Add OIDC icon
- icon: ,
+ icon: ,
},
};