From f995bb5bba62ca814577636c35e7fb85247bbf03 Mon Sep 17 00:00:00 2001 From: James Liu <2211002+jamesliu96@users.noreply.github.com> Date: Sat, 11 Jul 2026 21:13:15 +0800 Subject: [PATCH] Add 'outline_dark' theme option to GsiButtonConfiguration --- packages/@react-oauth/google/src/types/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@react-oauth/google/src/types/index.ts b/packages/@react-oauth/google/src/types/index.ts index c425dc9..1a664e3 100644 --- a/packages/@react-oauth/google/src/types/index.ts +++ b/packages/@react-oauth/google/src/types/index.ts @@ -92,7 +92,7 @@ export interface GsiButtonConfiguration { /** The button [type](https://developers.google.com/identity/gsi/web/reference/js-reference#type): icon, or standard button */ type?: 'standard' | 'icon'; /** The button [theme](https://developers.google.com/identity/gsi/web/reference/js-reference#theme). For example, filled_blue or filled_black */ - theme?: 'outline' | 'filled_blue' | 'filled_black'; + theme?: 'outline' | 'filled_blue' | 'filled_black' | 'outline_dark'; /** The button [size](https://developers.google.com/identity/gsi/web/reference/js-reference#size). For example, small or large */ size?: 'large' | 'medium' | 'small'; /** The button [text](https://developers.google.com/identity/gsi/web/reference/js-reference#text). For example, "Sign in with Google" or "Sign up with Google" */