ui-for-firebase-authentication
Version:
UI for Firebase Authentication (Firebase UI alternative supporting v9+)
18 lines (13 loc) • 471 B
text/typescript
interface SignInOptionDisplay {
/** Name of the provider on the button */
name: string,
/** Icon for the provider. Strongly recommended. */
icon?: string, //URL to the icon, can be dataURL
/** CSS color string for background */
backgroundColor: string,
/** CSS color string for text */
color: string,
/** CSS filter string for the icon (in case it needs to be inverted or modified). Optional. */
iconFilter?: string
}
export {SignInOptionDisplay}