export type BadgeProps = {
  /** Content of the badge. */
  content: string | number;
  /** Max value when numeric. */
  max?: number;
};
