UNPKG

372 BTypeScriptView Raw
1import * as React from 'react';
2
3interface GoogleButtonProps extends React.HTMLAttributes<HTMLDivElement> {
4 label?: string;
5 type?: "dark" | "light";
6 disabled?: boolean;
7}
8
9/**
10 * A React Component that renders a button that follows Google's Styleguide
11 */
12declare class GoogleButton extends React.Component<GoogleButtonProps, any> {
13
14}
15
16export default GoogleButton;