import { PropsWithChildren } from 'react'; import { IconProps } from '@@/Icon'; import { Badge, BadgeType } from '@@/Badge'; export type StatusBadgeType = | 'success' | 'danger' | 'warning' | 'info' | 'successLite' | 'dangerLite' | 'warningLite' | 'mutedLite' | 'infoLite' | 'default'; const typeToBadgeType: Record = { success: 'success', warning: 'warn', danger: 'danger', info: 'info', successLite: 'successSecondary', warningLite: 'warnSecondary', dangerLite: 'dangerSecondary', mutedLite: 'muted', infoLite: 'infoSecondary', default: 'custom', }; /** @deprecated Use Badge directly */ export function StatusBadge({ className, children, color = 'default', icon, }: PropsWithChildren<{ className?: string; color?: StatusBadgeType; icon?: IconProps['icon']; }>) { return ( {children} ); }