CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Interface BadgeProps

    Props for configuring the Badge pill/chip component.

    <Badge label="In Progress" color="#3b82f6" variant="subtle" />
    
    interface BadgeProps {
        color?: string | null;
        label: string;
        variant?: "default" | "outline" | "subtle";
    }
    Index
    color?: string | null

    Custom hex or CSS color for the text and background tint (e.g. "#3b82f6").

    label: string

    Text label displayed inside the badge pill.

    variant?: "default" | "outline" | "subtle"

    Visual presentation style:

    • 'subtle': Semi-transparent background with colored text (default).
    • 'outline': Transparent background with colored border.
    • 'default': Solid background chip.

    'subtle'