react-github-login-button
Version:
## Getting Started
17 lines (12 loc) • 372 B
TypeScript
import * as React from 'react';
interface GithubButtonProps extends React.HTMLAttributes<HTMLDivElement> {
label?: string;
type?: "dark" | "light";
disabled?: boolean;
}
/**
* A React Component that renders a button that follows Github's Styleguide
*/
declare class GithubButton extends React.Component<GithubButtonProps, any> {
}
export default GithubButton;