UNPKG

@skybin-tech/brandkit

Version:

React components for brand-compliant social login buttons

14 lines (13 loc) 395 B
import { default as React } from 'react'; export interface SteamButtonProps { mode?: 'signin' | 'signup' | 'continue'; dark?: boolean; shape?: 'square' | 'rounded'; width?: string | number; height?: string | number; onClick?: () => void; disabled?: boolean; className?: string; } declare const SteamButton: React.FC<SteamButtonProps>; export default SteamButton;