@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
13 lines (12 loc) • 346 B
TypeScript
import React from "react";
interface OAuthButtonsProps {
onGoogleLogin?: () => void;
onFacebookLogin?: () => void;
onTwitterLogin?: () => void;
onAppleLogin?: () => void;
onLinkedInLogin?: () => void;
fullWidth?: boolean;
compact?: boolean;
}
export declare const OAuthButtons: React.FC<OAuthButtonsProps>;
export {};