GoScrobble/web/node_modules/reactstrap/lib/Badge.d.ts

15 lines
373 B
TypeScript

import * as React from 'react';
import { CSSModule } from './index';
export interface BadgeProps extends React.HTMLAttributes<HTMLElement> {
[key: string]: any;
color?: string;
pill?: boolean;
tag?: React.ElementType;
innerRef?: React.Ref<HTMLElement>;
cssModule?: CSSModule;
}
declare class Badge extends React.Component<BadgeProps> {}
export default Badge;