import "./badge.scss" import * as React from "react"; import { cssNames } from "../../utils/cssNames"; import { TooltipDecoratorProps, withTooltip } from "../tooltip"; interface Props extends React.HTMLAttributes, TooltipDecoratorProps { label: React.ReactNode; small?: boolean; } @withTooltip export class Badge extends React.Component { render() { const { className, label, small, children, ...elemProps } = this.props; return ( {label} {children} ); } }