@skybin-tech/brandkit
Version:
React components for brand-compliant social login buttons
14 lines (13 loc) • 399 B
TypeScript
import { default as React } from 'react';
export interface TwitchButtonProps {
mode?: 'signin' | 'signup' | 'continue';
dark?: boolean;
shape?: 'square' | 'rounded';
width?: string | number;
height?: string | number;
onClick?: () => void;
disabled?: boolean;
className?: string;
}
declare const TwitchButton: React.FC<TwitchButtonProps>;
export default TwitchButton;