export default Badge;
declare function Badge({
  children,
  icon,
  iconWidth,
  iconColor,
  type,
  size
}: {
  children: React.node;
  icon: string;
  iconWidth: number;
  iconColor: string;
  type: string;
  size: string;
}): JSX.Element;
