UNPKG

react-google-button

Version:

[![NPM version][npm-image]][npm-url] [![Build Status][build-status-image]][build-status-url] [![Coverage][coverage-image]][coverage-url] [![License][license-image]][license-url] [![Code Style][code-style-image]][code-style-url]

17 lines (12 loc) 372 B
import * as React from 'react'; interface GoogleButtonProps extends React.HTMLAttributes<HTMLDivElement> { label?: string; type?: "dark" | "light"; disabled?: boolean; } /** * A React Component that renders a button that follows Google's Styleguide */ declare class GoogleButton extends React.Component<GoogleButtonProps, any> { } export default GoogleButton;