diff --git a/README.md b/README.md index 8a6f75c..c04d40d 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,7 @@ Auth SDK exposes the standard [Ethereum provider](https://eips.ethereum.org/EIPS - Steam - Twitter - Twitch + - Apple - Custom IAM diff --git a/src/typings.ts b/src/typings.ts index 86f051c..e6062b8 100644 --- a/src/typings.ts +++ b/src/typings.ts @@ -108,6 +108,7 @@ export interface UserInfo { } export type Logins = | 'google' + | 'apple' | 'github' | 'discord' | 'twitch' diff --git a/src/ui/icons.ts b/src/ui/icons.ts index a07df4c..741aea8 100644 --- a/src/ui/icons.ts +++ b/src/ui/icons.ts @@ -4,6 +4,7 @@ const LOADING_ICON = `${BASE_URL}/loading.svg` const SOCIAL_LOGO: { [k: string]: string } = { google: `${BASE_URL}/google.png`, + apple: `${BASE_URL}/apple.png`, twitter: `${BASE_URL}/twitter.png`, github: `${BASE_URL}/github.png`, github_light: `${BASE_URL}/github-light.png`,