import type { HTMLProps } from 'react'; export type TBadgeColor = 'primary' | 'secondary' | 'tertiary' | 'information' | 'success' | 'warning' | 'error'; export type TBadgeSize = 'sm' | 'md' | 'lg'; export type TBadgeProps = { /** Set the Badge's color. It will affect the Badge's background-color */ color?: TBadgeColor; /** Set the Badge's label */ label?: string | number; /** Set the Badge's size */ size?: TBadgeSize; } & Omit, 'size'>;