1 import AuthenticationServices
2 import ABI49_0_0ExpoModulesCore
3 
4 enum ButtonStyle: Int, Enumerable {
5   case white = 0
6   case whiteOutline = 1
7   case black = 2
8 
toAppleAuthButtonStylenull9   func toAppleAuthButtonStyle() -> ASAuthorizationAppleIDButton.Style {
10     return ASAuthorizationAppleIDButton.Style(rawValue: self.rawValue) ?? .white
11   }
12 }
13