Custom social connection icon

Is there any way to customize “custom social connectins” icon in Lock screen?
I has been created a new custom connection, which is works fine. But on lock screen I see generic Auth0 icon for this connection…

Try the theme.authButtons option, like this:

var options = {
  [...] // other Lock options
  theme: {
    authButtons: {
      "connectionName": {
        displayName: "Click me!",
        primaryColor: "#eb5424",
        foregroundColor: "#FFFFFF",
        icon: "https://.../logo.png"
      }
    }
  }
};

More info: GitHub - auth0/lock: Auth0's signin solution and Lock UI Customization

1 Like

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.