@skybin-tech/brandkit
Version:
React components for brand-compliant social login buttons
15 lines (14 loc) • 449 B
TypeScript
import { default as React } from 'react';
import { GoogleButtonMode, GoogleButtonShape } from './GoogleButton.types';
interface GoogleButtonProps {
mode?: GoogleButtonMode;
dark?: boolean;
shape?: GoogleButtonShape;
width?: string | number;
height?: string | number;
onClick?: () => void;
disabled?: boolean;
className?: string;
}
declare const GoogleButton: React.FC<GoogleButtonProps>;
export default GoogleButton;