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
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; |