MNEE
v0.0.1

Components

BadgeTypePill

Stable

Read-only direction indicator used in the transaction table's Type column. Visually distinct from Badge — uses rounded-full (capsule shape) instead of rounded-lg.

Not a Badge. Do not use for status labels — use Badge variant="success|warning|destructive" for Completed / Pending / Failed.

Variants

ReceiveSend

Usage

import { BadgeTypePill } from "@mnee-ui/ui"// In the transaction table Type column<BadgeTypePill variant={tx.direction === "IN" ? "receive" : "send"}>  {tx.direction === "IN" ? "Receive" : "Send"}</BadgeTypePill>

Props

PropTypeDefaultDescription
variant"receive" | "send"requiredVisual style
childrenReact.ReactNodeLabel text
classNamestringLayout overrides

Design notes

VariantBackgroundTextBorder
receivebg-brand (#D97706)text-whitenone
sendtransparent#0a0a0asurface-border (#E5E5E5)