UNPKG

matrix-react-sdk

Version:
13 lines (12 loc) 358 B
import React from "react"; import { MatrixClient } from "matrix-js-sdk/src/client"; import { ISSOFlow } from "../../../Login"; interface IProps { matrixClient: MatrixClient; flow: ISSOFlow; loginType?: "sso" | "cas"; fragmentAfterLogin?: string; primary?: boolean; } declare const SSOButtons: React.FC<IProps>; export default SSOButtons;