#4297·reactstrap

Badge colour is not working with `[email protected]`

Author: namtiCreated Apr 22, 2025Updated Apr 22, 2025
  • components: Badge
  • reactstrap version 9.2.3
  • import method es
  • react version 18.2.0
  • bootstrap version 5.3.3

What is happening?

The new [email protected] has changed the class name from bg-{color} to text-bg-{color}

When use

javascript
<Badge color="warning" className="rounded-pill">DEV</Badge>

The text color is not correct.

Image

The colour is expected to be:

Image

Code

HTML generated by [email protected]

xml
<span class="badge bg-warning rounded-pill">DEV</span>

Should be:

xml
<span class="badge text-bg-warning rounded-pill">DEV</span>