title: Badge

Badge

Small label for status, category, or count.

Usage

<View className="bg-accent rounded-full px-2 py-1">
  <Text className="text-accent-foreground text-xs font-bold uppercase">New</Text>
</View>

Variants

IntentClasses
Defaultbg-muted text-muted-foreground
Accentbg-accent text-accent-foreground
Successbg-success text-success-foreground
Destructivebg-destructive text-destructive-foreground

With count

<View className="relative">
  <Icon name="cart" />
  <View className="absolute -top-1 -right-1 bg-accent rounded-full h-5 min-w-5 items-center justify-center">
    <Text className="text-accent-foreground text-xs font-bold">{count}</Text>
  </View>
</View>