UNPKG

react-microsoft-login

Version:

React component for easy OAuth with Microsoft services on client side.

10 lines (9 loc) 374 B
import React from "react"; export type MicrosoftLoginButtonTheme = "dark_short" | "light_short" | "dark" | "light"; interface MicrosoftLoginButtonProps { buttonTheme: MicrosoftLoginButtonTheme; buttonClassName?: string; onClick?: any; } declare const MicrosoftLoginButton: React.FunctionComponent<MicrosoftLoginButtonProps>; export default MicrosoftLoginButton;