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