badge

Function badge 

Source
pub fn badge(color: Color, text: &str) -> Element<Span>
Expand description

Create a Bootstrap badge.

ยงExample

use ironhtml_bootstrap::{badge::badge, Color};

let b = badge(Color::Primary, "New");
assert!(b.render().contains("text-bg-primary"));