mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add typings for reactstrap * Make lint happy * Do not „double-reference“ to React types
16 lines
367 B
TypeScript
16 lines
367 B
TypeScript
interface Props extends React.HTMLProps<HTMLButtonElement> {
|
|
outline?: boolean;
|
|
active?: boolean;
|
|
block?: boolean;
|
|
color?: string;
|
|
disabled?: boolean;
|
|
tag?: React.ReactType;
|
|
|
|
onClick?: React.MouseEventHandler<any>;
|
|
size?: any;
|
|
id?: string;
|
|
style?: React.CSSProperties;
|
|
}
|
|
|
|
declare var Button: React.StatelessComponent<Props>;
|
|
export default Button; |