/// import { colorIndex } from '../../constants/colors/colors.types'; import { BoxProps } from '../Box/Box.types'; export interface BadgeProps extends BoxProps { isPercentage?: boolean; count: number; backgroundColor?: colorIndex; color?: colorIndex; showZero?: boolean; children?: React.ReactNode; }