@@ -2,7 +2,7 @@ import 'package:flutter/material.dart';
22
33import '../core/auth_config.dart' ;
44import '../core/extensions.dart' ;
5- import 'oauth_logos .dart' ;
5+ import 'lit_auth_icons .dart' ;
66
77const double defaultButtonHeight = 40.0 ;
88const FontWeight defaultFontWeight = FontWeight .w500;
@@ -44,7 +44,7 @@ class SignInWithGoogleButton extends StatelessWidget {
4444 color: Colors .white,
4545 ),
4646 child: Center (
47- child: OAuthIcon .google (),
47+ child: LitAuthIcon .google (),
4848 ),
4949 ),
5050 child: label ?? const _ContinueWithLabel (label: defaultLabel),
@@ -63,7 +63,7 @@ class SignInWithGoogleButton extends StatelessWidget {
6363 ),
6464 icon: _IconWrapper (
6565 buttonHeight: defaultButtonHeight,
66- child: OAuthIcon .google (),
66+ child: LitAuthIcon .google (),
6767 ),
6868 child: label ?? const _ContinueWithLabel (label: defaultLabel),
6969 ),
@@ -80,7 +80,7 @@ class SignInWithGoogleButton extends StatelessWidget {
8080 .copyWith (height: defaultButtonHeight),
8181 icon: _IconWrapper (
8282 buttonHeight: defaultButtonHeight,
83- child: OAuthIcon .google (),
83+ child: LitAuthIcon .google (),
8484 ),
8585 child: const _ContinueWithLabel (label: defaultLabel),
8686 ),
@@ -121,7 +121,7 @@ class SignInWithAppleButton extends StatelessWidget {
121121 child: label ?? const _ContinueWithLabel (label: defaultLabel),
122122 icon: _IconWrapper (
123123 buttonHeight: defaultButtonHeight,
124- child: OAuthIcon .appleWhite (),
124+ child: LitAuthIcon .appleWhite (),
125125 ),
126126 ),
127127 );
@@ -140,7 +140,7 @@ class SignInWithAppleButton extends StatelessWidget {
140140 child: label ?? const _ContinueWithLabel (label: defaultLabel),
141141 icon: _IconWrapper (
142142 buttonHeight: defaultButtonHeight,
143- child: OAuthIcon .appleBlack (),
143+ child: LitAuthIcon .appleBlack (),
144144 ),
145145 ),
146146 );
@@ -156,7 +156,7 @@ class SignInWithAppleButton extends StatelessWidget {
156156 .copyWith (height: defaultButtonHeight),
157157 icon: _IconWrapper (
158158 buttonHeight: defaultButtonHeight,
159- child: OAuthIcon .appleBlack (),
159+ child: LitAuthIcon .appleBlack (),
160160 ),
161161 child: const _ContinueWithLabel (label: defaultLabel),
162162 ),
@@ -194,7 +194,7 @@ class SignInWithGithubButton extends StatelessWidget {
194194 .copyWith (height: defaultButtonHeight),
195195 icon: _IconWrapper (
196196 buttonHeight: defaultButtonHeight,
197- child: OAuthIcon .github (),
197+ child: LitAuthIcon .github (),
198198 ),
199199 child: const _ContinueWithLabel (label: defaultLabel),
200200 ),
@@ -233,7 +233,7 @@ class SignInWithTwitterButton extends StatelessWidget {
233233 .copyWith (height: defaultButtonHeight),
234234 icon: _IconWrapper (
235235 buttonHeight: defaultButtonHeight,
236- child: OAuthIcon .twitter (),
236+ child: LitAuthIcon .twitter (),
237237 ),
238238 child: const _ContinueWithLabel (label: defaultLabel),
239239 ),
0 commit comments