mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-04 21:19:53 +08:00
* Add typings for reactstrap * Make lint happy * Do not „double-reference“ to React types
10 lines
233 B
TypeScript
10 lines
233 B
TypeScript
interface Props {
|
|
tag?: React.ReactType;
|
|
groupClassName?: string;
|
|
groupAttributes?: any;
|
|
className?: string;
|
|
color?: string;
|
|
}
|
|
|
|
declare var InputGroupButton: React.StatelessComponent<Props>;
|
|
export default InputGroupButton; |