import { Icon } from '@/ui/Icon'; import { Text } from '@/ui/Text'; import { Badge } from '@/ui/Badge'; import { ChevronDown, ChevronUp, Minus } from 'lucide-react'; import React from 'react'; interface DeltaChipProps { value: number; type?: 'rank' | 'rating'; } export function DeltaChip({ value, type = 'rank' }: DeltaChipProps) { if (value === 0) { return (