export interface IBadgeProps { contrast: IBadgeContrasts; status: IBadgeStatuses; iconName?: string; } export type IBadgeContrasts = 'low' | 'moderate' | 'high'; export type IBadgeStatuses = 'secondary' | 'primary' | 'neutral' | 'error' | 'warning' | 'success';