mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
20 lines
475 B
TypeScript
20 lines
475 B
TypeScript
import * as React from 'react';
|
|
import { CSSModule } from './index';
|
|
|
|
export interface ButtonProps
|
|
extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
[key: string]: any;
|
|
outline?: boolean;
|
|
active?: boolean;
|
|
block?: boolean;
|
|
color?: string;
|
|
tag?: React.ElementType;
|
|
innerRef?: React.Ref<HTMLButtonElement>;
|
|
size?: string;
|
|
cssModule?: CSSModule;
|
|
close?: boolean;
|
|
}
|
|
|
|
declare class Button extends React.Component<ButtonProps> {}
|
|
export default Button;
|