import React from "react"; import "./Badge.scss"; import { JDColor } from "../../types/enum"; export interface IBadge extends React.HTMLAttributes { badgeSize?: "noraml" | "tiny"; thema?: JDColor; hover?: boolean; className?: string; children?: any; tooltip?: string; } declare const JDbadge: React.SFC; export default JDbadge;