/** * @params color - Text color for badge with color/20 background * @params label - Text within badge */ import { ColorType } from "../../types/colors"; import { IconType } from "../icon"; export interface BadgeProps extends React.HTMLAttributes { color?: Exclude; size?: "sm" | "md" | "lg"; icon: IconType; className?: string; } export declare function IconBadge({ color, icon, size, ...props }: BadgeProps): JSX.Element; export default IconBadge;