mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-28 19:52:53 +00:00
* Add typings for reactstrap * Make lint happy * Do not „double-reference“ to React types
13 lines
251 B
TypeScript
13 lines
251 B
TypeScript
interface Props {
|
|
tag?: React.ReactType;
|
|
top?: boolean;
|
|
bottom?: boolean;
|
|
className?: string;
|
|
src?: string;
|
|
width?: string;
|
|
height?: string;
|
|
alt?: string;
|
|
}
|
|
|
|
declare var CardImg: React.StatelessComponent<Props>;
|
|
export default CardImg; |