@charmr/oauth-button
Version:
A lightweight, OAuth login button for React, designed to work seamlessly with the `@charmr/oauth-core` controller. Supports Google, Facebook (implicit flow), and GitHub (authorization code flow)
8 lines (7 loc) • 300 B
TypeScript
import React, { CSSProperties } from 'react';
import { OAuthLoginProps as CoreOAuthLoginProps } from '@charmr/oauth-core';
interface OAuthLoginProps extends Omit<CoreOAuthLoginProps, 'style'> {
style?: CSSProperties;
}
export declare const OAuthLoginButton: React.FC<OAuthLoginProps>;
export {};