import { Icon, Row, type RowProps, Text } from '@umami/react-zen'; import type { ReactNode } from 'react'; import { ArrowRight } from '@/components/icons'; const STYLES = { positive: { color: `var(--status-success)`, background: `var(--status-success-bg)`, }, negative: { color: `var(--status-error)`, background: `var(--status-error-bg)`, }, neutral: { color: `var(--text-muted)`, background: `var(--surface-raised)`, }, }; export function ChangeLabel({ value, size, reverseColors, children, ...props }: { value: number; size?: 'xs' | 'sm' | 'md' | 'lg'; title?: string; reverseColors?: boolean; showPercentage?: boolean; children?: ReactNode; } & RowProps) { const positive = value >= 0; const negative = value < 0; const neutral = value === 0 || Number.isNaN(value); const good = reverseColors ? negative : positive; const style = STYLES[good && 'positive'] || STYLES[!good && 'negative'] || STYLES[neutral && 'neutral']; return ( {!neutral && ( )} {children || value} ); }