import React from 'react'; import { View, Text } from 'react-native'; import { cn } from '@/lib/utils'; interface BadgeProps { label: string | number; variant?: 'default' | 'success' | 'destructive' | 'muted'; className?: string; } const variantMap = { default: 'bg-primary', success: 'bg-success', destructive: 'bg-destructive', muted: 'bg-surfaceHigh border border-border', }; export function Badge({ label, variant = 'default', className }: BadgeProps) { return ( {label} ); }