mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-10 19:22:58 +08:00
* Add typings for reactstrap * Make lint happy * Do not „double-reference“ to React types
9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
interface Props {
|
|
color?: string;
|
|
pill?: boolean;
|
|
tag?: React.ReactType;
|
|
className?: string;
|
|
}
|
|
|
|
declare var Badge: React.StatelessComponent<Props>;
|
|
export default Badge; |